5 Commits

Author SHA1 Message Date
b0c4249ee8 Update src/app/page.tsx 2026-03-19 14:01:30 +00:00
2b9e92f93f Add src/app/contact-us/page.tsx 2026-03-19 14:01:30 +00:00
0aeb2c802a Merge version_3 into main
Merge version_3 into main
2026-03-19 13:59:54 +00:00
5f5e6d3203 Update src/app/page.tsx 2026-03-19 13:59:44 +00:00
24b7423854 Merge version_2 into main
Merge version_2 into main
2026-03-19 13:54:08 +00:00
2 changed files with 87 additions and 3 deletions

View File

@@ -0,0 +1,84 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Mail, Instagram } from 'lucide-react';
export default function ContactUsPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumLargeSizeLargeTitles"
background="grid"
cardStyle="inset"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Misael's Photography"
navItems={[
{ name: "Portfolio", id: "portfolio" },
{ name: "About", id: "about" },
{ name: "Book Now", id: "booking" },
{ name: "Contact", id: "contact-us" }
]}
button={{
text: "Follow on Instagram", href: "https://instagram.com/misaelsphotography"
}}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Get In Touch"
title="Contact Me"
description="Reach out through Instagram or email to discuss your photography session and let's create something beautiful together."
tagIcon={Mail}
tagAnimation="slide-up"
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Send Message"
termsText="By reaching out, you're agreeing to discuss your photography needs with me."
ariaLabel="Contact section with Instagram and email information"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Contact Information", items: [
{ label: "Email: walkingforward01@gmail.com", href: "mailto:walkingforward01@gmail.com" },
{ label: "Instagram: @misaelsphotography", href: "https://instagram.com/misaelsphotography" }
]
},
{
title: "Quick Links", items: [
{ label: "Portfolio", href: "/" },
{ label: "About", href: "/" },
{ label: "Book Now", href: "/" }
]
},
{
title: "Follow Me", items: [
{ label: "Instagram", href: "https://instagram.com/misaelsphotography" },
{ label: "Direct Message", href: "https://instagram.com/misaelsphotography" }
]
}
]}
bottomLeftText="Misael's Photography © 2024. All rights reserved."
bottomRightText="Capturing moments, telling stories."
ariaLabel="Site footer with contact information"
/>
</div>
</ThemeProvider>
);
}

View File

@@ -30,7 +30,7 @@ export default function LandingPage() {
{ name: "Portfolio", id: "portfolio" },
{ name: "About", id: "about" },
{ name: "Book Now", id: "booking" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "contact-us" }
]}
button={{
text: "Follow on Instagram", href: "https://instagram.com/misaelsphotography"
@@ -43,7 +43,7 @@ export default function LandingPage() {
title="Live Feed from Instagram"
description="Follow my latest work and behind-the-scenes moments. Stay connected with my photography journey."
names={[
"@misaelsphotography", "Premium Photography", "Capturing Moments", "Tell Your Story"
"Behind-the-Scenes Access", "Exclusive Previews", "Photography Tips & Tutorials", "Follower Community"
]}
textboxLayout="default"
useInvertedBackground={false}