diff --git a/www/src/components/AboutPage.astro b/www/src/components/pages/AboutPage.astro similarity index 100% rename from www/src/components/AboutPage.astro rename to www/src/components/pages/AboutPage.astro diff --git a/www/src/components/CareersPage.astro b/www/src/components/pages/CareersPage.astro similarity index 100% rename from www/src/components/CareersPage.astro rename to www/src/components/pages/CareersPage.astro diff --git a/www/src/components/FaqPage.astro b/www/src/components/pages/FaqPage.astro similarity index 100% rename from www/src/components/FaqPage.astro rename to www/src/components/pages/FaqPage.astro diff --git a/www/src/components/HomePage.astro b/www/src/components/pages/HomePage.astro similarity index 74% rename from www/src/components/HomePage.astro rename to www/src/components/pages/HomePage.astro index dc21479..be54c4f 100644 --- a/www/src/components/HomePage.astro +++ b/www/src/components/pages/HomePage.astro @@ -1,17 +1,17 @@ --- import { getEntry } from 'astro:content'; -import BaseLayout from '../layouts/BaseLayout.astro'; -import HomeBenefits from './home/HomeBenefits.astro'; -import HomeDirector from './home/HomeDirector.astro'; -import HomeEsa from './home/HomeEsa.astro'; -import HomeFinancialHelp from './home/HomeFinancialHelp.astro'; -import HomeHero from './home/HomeHero.astro'; -import HomeInsurance from './home/HomeInsurance.astro'; -import HomeProcess from './home/HomeProcess.astro'; -import HomeServicesIntro from './home/HomeServicesIntro.astro'; -import HomeSkills from './home/HomeSkills.astro'; -import HomeTestimonials from './home/HomeTestimonials.astro'; -import type { HomePageContent, HomeSection } from '../types/home-sections'; +import BaseLayout from '../../layouts/BaseLayout.astro'; +import HomeBenefits from '../home/HomeBenefits.astro'; +import HomeDirector from '../home/HomeDirector.astro'; +import HomeEsa from '../home/HomeEsa.astro'; +import HomeFinancialHelp from '../home/HomeFinancialHelp.astro'; +import HomeHero from '../home/HomeHero.astro'; +import HomeInsurance from '../home/HomeInsurance.astro'; +import HomeProcess from '../home/HomeProcess.astro'; +import HomeServicesIntro from '../home/HomeServicesIntro.astro'; +import HomeSkills from '../home/HomeSkills.astro'; +import HomeTestimonials from '../home/HomeTestimonials.astro'; +import type { HomePageContent, HomeSection } from '../../types/home-sections'; interface Props { lang?: string } const { lang = 'en' } = Astro.props; diff --git a/www/src/components/ServicesPage.astro b/www/src/components/pages/ServicesPage.astro similarity index 99% rename from www/src/components/ServicesPage.astro rename to www/src/components/pages/ServicesPage.astro index 4aefac6..496d8aa 100644 --- a/www/src/components/ServicesPage.astro +++ b/www/src/components/pages/ServicesPage.astro @@ -1,5 +1,5 @@ --- -import Button from './Button.astro'; +import Button from '../Button.astro'; ---