From 641e334d83f3dc1fd93f646a82de7387e26929df Mon Sep 17 00:00:00 2001 From: Clement Date: Mon, 20 May 2024 14:43:06 +0200 Subject: [PATCH] fix home page import --- front/src/pages/index.astro | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/front/src/pages/index.astro b/front/src/pages/index.astro index f057516..1008409 100644 --- a/front/src/pages/index.astro +++ b/front/src/pages/index.astro @@ -1,16 +1,16 @@ --- -import Layout from '~/layouts/PageLayout.astro'; +import Layout from 'layouts/PageLayout.astro'; -import Hero from '~/components/widgets/Hero.astro'; -import Note from '~/components/widgets/Note.astro'; -import Features from '~/components/widgets/Features.astro'; -import Features2 from '~/components/widgets/Features2.astro'; -import Steps from '~/components/widgets/Steps.astro'; -import Content from '~/components/widgets/Content.astro'; -import BlogLatestPosts from '~/components/widgets/BlogLatestPosts.astro'; -import FAQs from '~/components/widgets/FAQs.astro'; -import Stats from '~/components/widgets/Stats.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; +import Hero from 'components/widgets/Hero.astro'; +import Note from 'components/widgets/Note.astro'; +import Features from 'components/widgets/Features.astro'; +import Features2 from 'components/widgets/Features2.astro'; +import Steps from 'components/widgets/Steps.astro'; +import Content from 'components/widgets/Content.astro'; +import BlogLatestPosts from 'components/widgets/BlogLatestPosts.astro'; +import FAQs from 'components/widgets/FAQs.astro'; +import Stats from 'components/widgets/Stats.astro'; +import CallToAction from 'components/widgets/CallToAction.astro'; const metadata = { title: 'AstroWind — Free template for creating websites with Astro + Tailwind CSS',