Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 011a6a2ff7 | |||
| ab19511e1e | |||
| 8b47dec430 | |||
| 3eede19cc7 | |||
| d9d270ce0d |
@@ -1,5 +1,62 @@
|
|||||||
import { redirect } from 'next/navigation';
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
|
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||||
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||||
|
import { Zap } from 'lucide-react';
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
redirect('/components');
|
const navItems = [
|
||||||
|
{ name: "Home", id: "home" },
|
||||||
|
{ name: "FAQ", id: "faq" },
|
||||||
|
{ name: "Contact", id: "contact" },
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="directional-hover"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="largeSmall"
|
||||||
|
background="grid"
|
||||||
|
cardStyle="gradient-radial"
|
||||||
|
primaryButtonStyle="double-inset"
|
||||||
|
secondaryButtonStyle="radial-glow"
|
||||||
|
headingFontWeight="semibold"
|
||||||
|
>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleCentered
|
||||||
|
brandName="A Chi Che Ezay PK"
|
||||||
|
navItems={navItems}
|
||||||
|
button={{ text: "Get Started", href: "#contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="hero" data-section="hero">
|
||||||
|
<HeroBillboardGallery
|
||||||
|
title="Authentic Flavors, Delivered"
|
||||||
|
description="Discover premium Pakistani food and beverage products. Experience authentic tastes, quality ingredients, and secure online shopping."
|
||||||
|
background={{ variant: 'sparkles-gradient' }}
|
||||||
|
mediaItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/product-branding-packaging_23-2150965863.jpg", imageAlt: "Authentic Pakistani food ingredients" }]}
|
||||||
|
buttons={[{ text: "Explore Products", href: "/products" }]}
|
||||||
|
tag="Welcome to our store"
|
||||||
|
tagIcon={Zap}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBaseCard
|
||||||
|
logoText="A Chi Che Ezay PK"
|
||||||
|
columns={[
|
||||||
|
{ title: "Shop", items: [{ label: "All Products", href: "/products" }] },
|
||||||
|
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
||||||
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }] }
|
||||||
|
]}
|
||||||
|
copyrightText="© 2025 | A Chi Che Ezay PK"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user