Update to v1.0 of website code from kottgard-production-v1.zip

This commit is contained in:
root
2026-06-23 09:24:46 +00:00
parent e0273c46d7
commit 582a2f33ad
60 changed files with 658 additions and 160 deletions
+9 -24
View File
@@ -1,27 +1,12 @@
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';
import type { Metadata } from 'next';
import HomeView from '@/components/home/HomeView';
import { SITE_NAME } from '@/lib/constants';
export const metadata: Metadata = {
title: 'Home',
description: `${SITE_NAME} — premium 100% Halal meat delivery. Fresh chicken, beef, and lamb; frozen fish and seafood only.`,
};
export default function HomePage() {
return (
<>
<Hero />
<TrustBadges />
<AboutPreview />
<CategoryGrid />
<FeaturedProducts />
<HowItWorks />
<WeeklyOffers />
<CTA />
<SocialFollow />
<ContactPreview />
</>
);
return <HomeView />;
}