Update src/app/about/page.tsx
This commit is contained in:
@@ -5,79 +5,54 @@ import ReactLenis from "lenis/react";
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import { Award, Flame, Phone, Zap } from "lucide-react";
|
||||
import { Coffee, ChefHat, Heart, Phone } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="City Burger"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-page-body" data-section="about-page-body">
|
||||
<AboutMetric
|
||||
useInvertedBackground={true}
|
||||
title="Why Choose City Burger"
|
||||
metrics={[
|
||||
{
|
||||
icon: Flame,
|
||||
label: "Fresh Ingredients",
|
||||
value: "100%",
|
||||
},
|
||||
{
|
||||
icon: Zap,
|
||||
label: "Fast Service",
|
||||
value: "5 min",
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Affordable",
|
||||
value: "Best",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="City Burger"
|
||||
copyrightText="© 2025 City Burger Termez"
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Phone,
|
||||
href: "tel:+998996700008",
|
||||
ariaLabel: "Call us",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="City Burger"
|
||||
/>
|
||||
</div>
|
||||
<div id="about-page-body" data-section="about-page-body">
|
||||
<AboutMetric
|
||||
title="About City Burger Termez"
|
||||
metrics={[
|
||||
{ icon: Coffee, label: "Café Experience", value: "Local" },
|
||||
{ icon: ChefHat, label: "Fresh Food", value: "Daily" },
|
||||
{ icon: Heart, label: "Customer Love", value: "100%" }
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="City Burger"
|
||||
copyrightText="© 2025 City Burger Termez"
|
||||
socialLinks={[{ icon: Phone, href: "tel:+998996700008", ariaLabel: "Call us" }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user