Update src/app/contact/page.tsx

This commit is contained in:
2026-03-27 07:15:42 +00:00
parent d527de7804
commit 0d03d830ea

View File

@@ -7,70 +7,50 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Phone } from "lucide-react";
export default function LandingPage() {
export default function ContactPage() {
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="contact-page-body" data-section="contact-page-body">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Contact Us"
title="Hungry? Call Us Now!"
description="Our team is ready to take your order or answer your questions."
buttons={[
{
text: "+998 99 670 00 08",
href: "tel:+998996700008",
},
]}
/>
</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="contact-page-body" data-section="contact-page-body">
<ContactCTA
tag="Contact Us"
title="Hungry? Call Us Now!"
description="Our team is ready to take your order or answer your questions."
buttons={[{ text: "+998 99 670 00 08", href: "tel:+998996700008" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</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>
);
}
}