├── .editorconfig ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── bun.lock ├── eslint.config.js ├── package.json ├── public ├── apple-touch-icon.png ├── defaultimg.png ├── favicon-96x96.png ├── favicon.ico ├── favicon.svg ├── femboy.jpg ├── robots.txt ├── site.webmanifest ├── sitemap.xml ├── web-app-manifest-192x192.png └── web-app-manifest-512x512.png ├── src ├── assets │ ├── al0rante.webp │ ├── atlas-logo.svg │ ├── atlas-logomark.svg │ ├── atlas-wallpaper.webp │ ├── background.svg │ ├── github-overview.webp │ ├── github-star.svg │ ├── gpl3-logo.svg │ ├── itsfoss-logomark.svg │ ├── linus-tech-tips-video-thumbnail.webp │ ├── mistic.webp │ ├── pcguide-logomark.svg │ ├── review-star.svg │ ├── review-stars.svg │ ├── review.png │ ├── review.svg │ ├── review.webp │ ├── starwraith.webp │ ├── techspot-logomark.svg │ ├── verified.svg │ └── wepc-logomark.svg ├── components │ ├── common │ │ ├── SectionSeparator.astro │ │ └── SectionTitle.astro │ ├── layout │ │ ├── Footer.astro │ │ └── Navbar.astro │ ├── sections │ │ ├── Benchmarks.astro │ │ ├── FAQ.astro │ │ ├── Features.astro │ │ ├── Hero.astro │ │ ├── JoinCommunity.astro │ │ ├── LinusTechTips.astro │ │ ├── OpenSource.astro │ │ ├── ProTestimonials.astro │ │ ├── Reviews.astro │ │ └── WhyAtlas.astro │ └── ui │ │ ├── Button.astro │ │ └── DownloadModal.astro ├── layouts │ └── DefaultLayout.astro ├── pages │ └── index.astro └── styles │ └── global.css └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/bun.lock -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/package.json -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/defaultimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/defaultimg.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/femboy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/femboy.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /src/assets/al0rante.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/al0rante.webp -------------------------------------------------------------------------------- /src/assets/atlas-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/atlas-logo.svg -------------------------------------------------------------------------------- /src/assets/atlas-logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/atlas-logomark.svg -------------------------------------------------------------------------------- /src/assets/atlas-wallpaper.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/atlas-wallpaper.webp -------------------------------------------------------------------------------- /src/assets/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/background.svg -------------------------------------------------------------------------------- /src/assets/github-overview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/github-overview.webp -------------------------------------------------------------------------------- /src/assets/github-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/github-star.svg -------------------------------------------------------------------------------- /src/assets/gpl3-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/gpl3-logo.svg -------------------------------------------------------------------------------- /src/assets/itsfoss-logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/itsfoss-logomark.svg -------------------------------------------------------------------------------- /src/assets/linus-tech-tips-video-thumbnail.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/linus-tech-tips-video-thumbnail.webp -------------------------------------------------------------------------------- /src/assets/mistic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/mistic.webp -------------------------------------------------------------------------------- /src/assets/pcguide-logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/pcguide-logomark.svg -------------------------------------------------------------------------------- /src/assets/review-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/review-star.svg -------------------------------------------------------------------------------- /src/assets/review-stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/review-stars.svg -------------------------------------------------------------------------------- /src/assets/review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/review.png -------------------------------------------------------------------------------- /src/assets/review.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/review.svg -------------------------------------------------------------------------------- /src/assets/review.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/review.webp -------------------------------------------------------------------------------- /src/assets/starwraith.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/starwraith.webp -------------------------------------------------------------------------------- /src/assets/techspot-logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/techspot-logomark.svg -------------------------------------------------------------------------------- /src/assets/verified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/verified.svg -------------------------------------------------------------------------------- /src/assets/wepc-logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/assets/wepc-logomark.svg -------------------------------------------------------------------------------- /src/components/common/SectionSeparator.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/common/SectionSeparator.astro -------------------------------------------------------------------------------- /src/components/common/SectionTitle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/common/SectionTitle.astro -------------------------------------------------------------------------------- /src/components/layout/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/layout/Footer.astro -------------------------------------------------------------------------------- /src/components/layout/Navbar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/layout/Navbar.astro -------------------------------------------------------------------------------- /src/components/sections/Benchmarks.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/Benchmarks.astro -------------------------------------------------------------------------------- /src/components/sections/FAQ.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/FAQ.astro -------------------------------------------------------------------------------- /src/components/sections/Features.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/Features.astro -------------------------------------------------------------------------------- /src/components/sections/Hero.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/Hero.astro -------------------------------------------------------------------------------- /src/components/sections/JoinCommunity.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/JoinCommunity.astro -------------------------------------------------------------------------------- /src/components/sections/LinusTechTips.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/LinusTechTips.astro -------------------------------------------------------------------------------- /src/components/sections/OpenSource.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/OpenSource.astro -------------------------------------------------------------------------------- /src/components/sections/ProTestimonials.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/ProTestimonials.astro -------------------------------------------------------------------------------- /src/components/sections/Reviews.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/Reviews.astro -------------------------------------------------------------------------------- /src/components/sections/WhyAtlas.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/sections/WhyAtlas.astro -------------------------------------------------------------------------------- /src/components/ui/Button.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/ui/Button.astro -------------------------------------------------------------------------------- /src/components/ui/DownloadModal.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/components/ui/DownloadModal.astro -------------------------------------------------------------------------------- /src/layouts/DefaultLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/layouts/DefaultLayout.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atlas-OS/website/HEAD/tsconfig.json --------------------------------------------------------------------------------