diff --git a/src/app/page.tsx b/src/app/page.tsx
index 0e33560..34c2a7c 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -7,7 +7,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
-import { Flame, Star, Truck, Phone, ShoppingBag, Facebook, Instagram, Twitter } from "lucide-react";
+import { Flame, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -27,11 +27,22 @@ export default function LandingPage() {
@@ -40,32 +51,143 @@ export default function LandingPage() {
-
-
-
Fast & Reliable Delivery
-
Get your favorite meals delivered straight to your door. Fresh, hot, and quick.
-
-
-
-
@@ -77,31 +199,208 @@ export default function LandingPage() {
textboxLayout="split"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={true}
- products={[]}
+ products={[
+ {
+ id: "c1",
+ name: "Zinger Strips",
+ price: "6000 IQD",
+ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-sauce-with-french-fries-fried-chicken_23-2148646569.jpg",
+ },
+ {
+ id: "c2",
+ name: "Chicken Bucket",
+ price: "15000 IQD",
+ imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-nuggets-with-two-different-sauces_23-2148646584.jpg",
+ },
+ {
+ id: "c3",
+ name: "Spicy Wings",
+ price: "4500 IQD",
+ imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-chicken-cutting-board-with-tomato-sauce_1150-20225.jpg",
+ },
+ {
+ id: "c4",
+ name: "Popcorn Chicken",
+ price: "3500 IQD",
+ imageSrc: "http://img.b2bpic.net/free-photo/crispy-golden-fried-chicken-bowl-dark-wood_84443-74902.jpg",
+ },
+ {
+ id: "c5",
+ name: "Chicken Nuggets",
+ price: "4000 IQD",
+ imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-fish-chips-concept_23-2148732299.jpg",
+ },
+ {
+ id: "c6",
+ name: "Crispy Fillet",
+ price: "5500 IQD",
+ imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-chicken-wooden-plate-with-tomato-sauce_1150-20206.jpg",
+ },
+ ]}
title="Crispy Chicken Selection"
description="Crunchy on the outside, juicy on the inside."
/>
+
+
+
+
@@ -112,24 +411,39 @@ export default function LandingPage() {
logoText="Al Kharsani Chips"
columns={[
{
- title: "Social", items: [
- { label: "Facebook", href: "#" },
- { label: "Instagram", href: "#" },
- { label: "Twitter", href: "#" },
+ title: "Menu",
+ items: [
+ {
+ label: "Burgers",
+ href: "#burgers",
+ },
+ {
+ label: "Pizza",
+ href: "#pizza",
+ },
+ {
+ label: "Chicken",
+ href: "#chicken",
+ },
],
},
{
- title: "Support", items: [
- { label: "FAQ", href: "#" },
- { label: "Contact Us", href: "#contact" },
- { label: "Privacy Policy", href: "#" },
+ title: "Information",
+ items: [
+ {
+ label: "Contact",
+ href: "#contact",
+ },
+ {
+ label: "Privacy",
+ href: "#",
+ },
],
},
]}
- copyrightText="© 2025 Al Kharsani Chips. All rights reserved."
/>
);
-}
\ No newline at end of file
+}