Update src/app/contact/page.tsx
This commit is contained in:
@@ -8,7 +8,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { MapPin, Sun } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -26,70 +26,24 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menù",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Il Locale",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Prenota",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menù", id: "/menu" },
|
||||
{ name: "Il Locale", id: "/about" },
|
||||
{ name: "Prenota", id: "/contact" },
|
||||
]}
|
||||
brandName="L'Acquolina"
|
||||
button={{ text: "Prenota", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Prenota il tuo tavolo in pochi secondi. Chiamaci o scrivici su WhatsApp per gruppi numerosi!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Chiama ora",
|
||||
href: "tel:+39021234567",
|
||||
},
|
||||
{
|
||||
text: "WhatsApp",
|
||||
href: "https://wa.me/39021234567",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Dove trovarci"
|
||||
description="Siamo sempre pronti ad accoglierti con un sorriso."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "Milano",
|
||||
title: "Città",
|
||||
description: "Zona centrale facilmente raggiungibile.",
|
||||
icon: MapPin,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "12:00",
|
||||
title: "Apertura Pranzo",
|
||||
description: "Sempre freschi per il tuo break.",
|
||||
icon: Sun,
|
||||
},
|
||||
{ text: "Chiama ora", href: "tel:+39021234567" },
|
||||
{ text: "WhatsApp", href: "https://wa.me/39021234567" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -98,41 +52,9 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="L'Acquolina In Bocca"
|
||||
columns={[
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Via Roma, 1, Milano",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "02 1234567",
|
||||
href: "tel:+39021234567",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Menù",
|
||||
items: [
|
||||
{
|
||||
label: "Pranzo di lavoro",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Specialità",
|
||||
href: "/menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Prenota",
|
||||
items: [
|
||||
{
|
||||
label: "Contattaci",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Info", items: [{ label: "Via Roma, 1, Milano", href: "#" }, { label: "02 1234567", href: "tel:+39021234567" }] },
|
||||
{ title: "Menù", items: [{ label: "Pranzo di lavoro", href: "/menu" }, { label: "Specialità", href: "/menu" }] },
|
||||
{ title: "Prenota", items: [{ label: "Contattaci", href: "/contact" }] },
|
||||
]}
|
||||
copyrightText="© 2024 L'Acquolina In Bocca. Tutti i diritti riservati."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user