1
0
Fork 0

refactor(vojtechmares.com): migrate homepage to app directory

This commit is contained in:
Vojtěch Mareš 2023-10-05 15:48:26 +02:00
parent 0370e234ba
commit b93b731c6b
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
3 changed files with 113 additions and 20 deletions

View file

@ -0,0 +1,25 @@
import { Hero } from "@/components/homepage/Hero";
import { CallToAction } from "@/components/homepage/CallToAction";
import { Faqs } from "@/components/homepage/Faqs";
import { Services } from "@/components/homepage/Services";
import { WhatIDo } from "@/components/homepage/WhatIDo";
import { Testimonials } from "@/components/homepage/Testimonials";
import { KubernetesEverywhere } from "@/components/homepage/KubernetesEverywhere";
import { TrainingList } from "@/components/homepage/Training";
const Page = () => {
return (
<main>
<Hero />
<WhatIDo />
<TrainingList />
<KubernetesEverywhere />
<CallToAction />
<Testimonials />
<Services />
{/* <Faqs /> */}
</main>
)
}
export default Page