Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #10.
This commit is contained in:
2026-03-13 09:52:36 +00:00
2 changed files with 80 additions and 5 deletions

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

@@ -0,0 +1,75 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Github, Instagram, Linkedin, Twitter } from "lucide-react";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="layered-gradient"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="AM Agency"
navItems={[
{ name: "Work", id: "/" },
{ name: "Process", id: "/" },
{ name: "About", id: "/" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
animateOnLoad={true}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Get in Touch"
description="We'd love to hear from you. Send us a message and let's start discussing your project."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }
]}
textarea={{
name: "message", placeholder: "Tell us about your project...", rows: 5,
required: true
}}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aj7GIMAiMrDMRaDjVpBEuEoiXn/a-modern-creative-studio-workspace-with--1773394805437-eefa660c.png"
imageAlt="Contact us to start your project"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Send Message"
onSubmit={(data) => {
console.log("Form data:", data);
}}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Creative Studio"
copyrightText="© 2026 AM Agency. All rights reserved."
socialLinks={[
{ icon: Linkedin, href: "https://linkedin.com/company/creativestudio", ariaLabel: "LinkedIn" },
{ icon: Twitter, href: "https://twitter.com/creativestudio", ariaLabel: "Twitter" },
{ icon: Instagram, href: "https://instagram.com/creativestudio", ariaLabel: "Instagram" },
{ icon: Github, href: "https://github.com/creativestudio", ariaLabel: "GitHub" }
]}
/>
</div>
</ThemeProvider>
);
}

View File

@@ -33,9 +33,9 @@ export default function LandingPage() {
{ name: "Work", id: "features" },
{ name: "Process", id: "process" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "#contact" }}
button={{ text: "Get Started", href: "/contact" }}
animateOnLoad={true}
/>
</div>
@@ -56,7 +56,7 @@ export default function LandingPage() {
mediaAnimation="slide-up"
buttons={[
{ text: "Explore Our Work", href: "#features" },
{ text: "Let's Talk", href: "#contact" }
{ text: "Let's Talk", href: "/contact" }
]}
buttonAnimation="slide-up"
tag="Award-Winning Agency"
@@ -240,8 +240,8 @@ export default function LandingPage() {
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[
{ text: "Start a Project", href: "#" },
{ text: "Schedule a Call", href: "#" }
{ text: "Start a Project", href: "/contact" },
{ text: "Schedule a Call", href: "/contact" }
]}
/>
</div>