Merge version_4 into main #8

Merged
bender merged 2 commits from version_4 into main 2026-04-30 06:40:16 +00:00
2 changed files with 61 additions and 13 deletions

58
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,58 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="circleGradient"
cardStyle="outline"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/#products" },
{ name: "About", id: "/#about" },
{ name: "Contact", id: "/contact" },
]}
brandName=""
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{ variant: "plain" }}
tag="Contact Us"
title="Get In Touch"
description="Call us at +1 234 567 890 or use the form below."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Sweet Delights"
columns={[
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/#products" }] },
{ title: "Social", items: [{ label: "WhatsApp", href: "https://wa.me/1234567890" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -30,10 +30,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "#hero" },
{ name: "Home", id: "/" },
{ name: "Products", id: "#products" },
{ name: "About", id: "#about" },
{ name: "Contact", id: "#contact" },
{ name: "Contact", id: "/contact" },
]}
brandName=""
/>
@@ -130,21 +130,11 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{ variant: "plain" }}
tag="Contact Us"
title="Get In Touch"
description="Call us at +1 234 567 890 or use the form below."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Sweet Delights"
columns={[
{ title: "Navigate", items: [{ label: "Home", href: "#hero" }, { label: "Products", href: "#products" }] },
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Products", href: "#products" }] },
{ title: "Social", items: [{ label: "WhatsApp", href: "https://wa.me/1234567890" }] }
]}
/>