Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-05-11 13:49:55 +00:00

View File

@@ -5,8 +5,9 @@ import ReactLenis from "lenis/react";
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import Link from "next/link";
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -21,44 +22,39 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"},
{
name: "Meniu", id: "/menu"},
{
name: "Despre Noi", id: "/about"},
{
name: "Contact", id: "/contact"},
]}
brandName="Velvet Brew"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Meniu", id: "/menu" },
{ name: "Despre Noi", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Velvet Brew"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Informații Contact"
sections={[
{
heading: "Locație", content: {
text: "Chișinău, str. Exemplului, nr 1."},
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Informații Contact"
sections={[
{
heading: "Locație", content: {
type: "paragraph", text: "Chișinău, str. Exemplului, nr 1."
}
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Velvet Brew Café"
leftLink={{
text: "Program: L-V 08:00-22:00", href: "#"}}
rightLink={{
text: "+373 600 12 345", href: "tel:+37360012345"}}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Velvet Brew Café"
leftLink={{ text: "Program: L-V 08:00-22:00", href: "#" }}
rightLink={{ text: "+373 600 12 345", href: "tel:+37360012345" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);