Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-12 01:19:07 +00:00
2 changed files with 91 additions and 6 deletions

85
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,85 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import MediaAbout from "@/components/sections/about/MediaAbout";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Clock, MapPin } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="large"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="layered"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Order", id: "cta" },
{ name: "Location", id: "location" },
{ name: "Contact", id: "contact" }
]}
brandName="ChickenBox"
bottomLeftText="El Tor, South Sinai"
bottomRightText="01100016162"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="About ChickenBox"
description="ChickenBox is your local fried chicken destination in El Tor, South Sinai. We serve crispy, delicious chicken meals 24/7 with fast service and quality ingredients. Whether you're craving chicken boxes, sandwiches, or combo meals, we've got you covered with authentic Egyptian fast-food energy."
tag="Since 2025"
tagIcon={Clock}
tagAnimation="slide-up"
buttons={[{ text: "Order Now", href: "tel:01100016162" }]}
imageSrc="http://img.b2bpic.net/free-photo/two-female-friends-having-coffee-together-caf_23-2147871314.jpg"
imageAlt="ChickenBox restaurant interior"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "ChickenBox", items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/#menu" },
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "tel:01100016162" }
]
},
{
title: "Quick Links", items: [
{ label: "Order Now", href: "tel:01100016162" },
{ label: "Get Directions", href: "/#location" },
{ label: "Our Menu", href: "/#menu" },
{ label: "Reviews", href: "/#testimonials" }
]
},
{
title: "Connect With Us", items: [
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Call: 01100016162", href: "tel:01100016162" },
{ label: "Location", href: "/#location" },
{ label: "Hours: 24/7", href: "/about" }
]
}
]}
copyrightText="© 2025 ChickenBox. Crispy Chicken. Fast. Fresh. All rights reserved."
/>
</div>
</ThemeProvider>
);
}

View File

@@ -31,7 +31,7 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "About", id: "/about" },
{ name: "Order", id: "cta" },
{ name: "Location", id: "location" },
{ name: "Contact", id: "contact" }
@@ -119,7 +119,7 @@ export default function LandingPage() {
tag="Since 2025"
tagIcon={Clock}
tagAnimation="slide-up"
buttons={[{ text: "Learn More", href: "#" }]}
buttons={[{ text: "Learn More", href: "/about" }]}
imageSrc="http://img.b2bpic.net/free-photo/two-female-friends-having-coffee-together-caf_23-2147871314.jpg"
imageAlt="ChickenBox restaurant interior"
useInvertedBackground={true}
@@ -257,9 +257,9 @@ export default function LandingPage() {
columns={[
{
title: "ChickenBox", items: [
{ label: "Home", href: "#" },
{ label: "Home", href: "/" },
{ label: "Menu", href: "#menu" },
{ label: "About Us", href: "#about" },
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "tel:01100016162" }
]
},
@@ -276,7 +276,7 @@ export default function LandingPage() {
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Call: 01100016162", href: "tel:01100016162" },
{ label: "Location", href: "#location" },
{ label: "Hours: 24/7", href: "#" }
{ label: "Hours: 24/7", href: "/about" }
]
}
]}
@@ -285,4 +285,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}