Initial commit: Kottgard production website code

This commit is contained in:
2026-06-19 15:46:23 +00:00
commit e0273c46d7
196 changed files with 29799 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
import Hero from '@/components/home/Hero';
import TrustBadges from '@/components/home/TrustBadges';
import AboutPreview from '@/components/home/AboutPreview';
import CategoryGrid from '@/components/home/CategoryGrid';
import FeaturedProducts from '@/components/home/FeaturedProducts';
import HowItWorks from '@/components/home/HowItWorks';
import WeeklyOffers from '@/components/home/WeeklyOffers';
import SocialFollow from '@/components/home/SocialFollow';
import ContactPreview from '@/components/home/ContactPreview';
import CTA from '@/components/home/CTA';
export default function HomePage() {
return (
<>
<Hero />
<TrustBadges />
<AboutPreview />
<CategoryGrid />
<FeaturedProducts />
<HowItWorks />
<WeeklyOffers />
<CTA />
<SocialFollow />
<ContactPreview />
</>
);
}