Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-05-23 12:40:56 +00:00

View File

@@ -2,131 +2,74 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import LegalSection from '@/components/sections/legal/LegalSection';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="large"
background="blurBottom"
cardStyle="glass-elevated"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="large"
background="blurBottom"
cardStyle="glass-elevated"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About Us",
id: "/about",
},
{
name: "Sectors",
id: "/sectors",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Alkodmani Group"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Sectors", id: "/sectors" },
{ name: "Contact", id: "/contact" },
]}
brandName="Alkodmani Group"
/>
</div>
<div id="contact-inner" data-section="contact-inner">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Enquiries"
title="Get in touch with us"
description="We are ready to discuss growth opportunities."
buttons={[
{
text: "Contact Us",
},
]}
/>
</div>
<div id="contact-inner" data-section="contact-inner">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Enquiries"
title="Get in touch with us"
description="We are ready to discuss growth opportunities."
buttons={[{ text: "Contact Us" }]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Contact Policies"
sections={[
{
heading: "Inquiries",
content: {
type: "paragraph",
text: "All inquiries are handled with strict privacy protocols.",
},
},
{
heading: "Office Hours",
content: {
type: "list",
items: [
"Mon-Fri: 9am-6pm",
"Sat-Sun: Closed",
],
},
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Contact Policies"
sections={[
{
heading: "Inquiries", content: { text: "All inquiries are handled with strict privacy protocols." }
},
{
heading: "Office Hours", content: { items: ["Mon-Fri: 9am-6pm", "Sat-Sun: Closed"] }
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Alkodmani Group"
columns={[
{
title: "Navigation",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Sectors",
href: "/sectors",
},
],
},
{
title: "Company",
items: [
{
label: "Contact Us",
href: "/contact",
},
{
label: "Vision",
href: "/about#vision",
},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Alkodmani Group"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Sectors", href: "/sectors" }] },
{ title: "Company", items: [{ label: "Contact Us", href: "/contact" }, { label: "Vision", href: "/about#vision" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}