diff --git a/apps/website/src/index.tsx b/apps/website/src/index.tsx
index d7cfa5bf6..72527f4da 100644
--- a/apps/website/src/index.tsx
+++ b/apps/website/src/index.tsx
@@ -5,7 +5,7 @@ import { Home } from './pages/Home/index.jsx';
import { NotFound } from './pages/_404.jsx';
import './style.css';
import Footer from './components/Footer.js';
-import Download from './pages/Download/download.js';
+import GetStarted from './pages/GetStarted/get-started.js';
import Donate from './pages/Donate/Donate.js';
export function App() {
@@ -16,7 +16,7 @@ export function App() {
-
+
diff --git a/apps/website/src/pages/Download/download.css b/apps/website/src/pages/GetStarted/get-started.css
similarity index 100%
rename from apps/website/src/pages/Download/download.css
rename to apps/website/src/pages/GetStarted/get-started.css
diff --git a/apps/website/src/pages/Download/download.tsx b/apps/website/src/pages/GetStarted/get-started.tsx
similarity index 99%
rename from apps/website/src/pages/Download/download.tsx
rename to apps/website/src/pages/GetStarted/get-started.tsx
index 484c096e0..d1dfe5a4d 100644
--- a/apps/website/src/pages/Download/download.tsx
+++ b/apps/website/src/pages/GetStarted/get-started.tsx
@@ -2,11 +2,11 @@ import { useState } from "preact/hooks";
import Card from "../../components/Card";
import Section from "../../components/Section";
import { App, Architecture, buildDownloadUrl, downloadMatrix, DownloadMatrixEntry, getArchitecture, Platform } from "../../download-helper";
-import "./download.css";
import { usePageTitle } from "../../hooks";
import Button, { Link } from "../../components/Button";
import Icon from "../../components/Icon";
import helpIcon from "../../assets/boxicons/bx-help-circle.svg?raw";
+import "./get-started.css";
export default function DownloadPage() {
const [ currentArch, setCurrentArch ] = useState(getArchitecture());
diff --git a/apps/website/src/pages/Home/index.tsx b/apps/website/src/pages/Home/index.tsx
index afde95c36..7ccff2b22 100644
--- a/apps/website/src/pages/Home/index.tsx
+++ b/apps/website/src/pages/Home/index.tsx
@@ -48,8 +48,8 @@ function HeroSection() {