Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 453ddecdbf | |||
| 6e6d98c9b6 | |||
| 8d82bac4c3 | |||
| 538a654e83 | |||
| d46887ef9c | |||
| c9e54b3cb4 | |||
| ab2114a305 | |||
| cf3335b8e6 | |||
| 1fdfe0eee0 | |||
| f7007d6b59 | |||
| 06d0760af9 | |||
| 67c6f09432 | |||
| 312de35d3a | |||
| a9bfcebeb9 | |||
| b0c4249ee8 | |||
| 2b9e92f93f | |||
| 0aeb2c802a |
84
src/app/contact-us/page.tsx
Normal file
84
src/app/contact-us/page.tsx
Normal 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: "/portfolio" },
|
||||||
|
{ label: "About", href: "/#about" },
|
||||||
|
{ label: "Book Now", href: "/#booking" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -30,7 +30,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Portfolio", id: "portfolio" },
|
{ name: "Portfolio", id: "portfolio" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Book Now", id: "booking" },
|
{ name: "Book Now", id: "booking" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact-us" }
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Follow on Instagram", href: "https://instagram.com/misaelsphotography"
|
text: "Follow on Instagram", href: "https://instagram.com/misaelsphotography"
|
||||||
@@ -52,7 +52,7 @@ export default function LandingPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Follow on Instagram", href: "https://instagram.com/misaelsphotography" },
|
{ text: "Follow on Instagram", href: "https://instagram.com/misaelsphotography" },
|
||||||
{ text: "View Portfolio", href: "#portfolio" }
|
{ text: "View Portfolio", href: "/portfolio" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
speed={40}
|
speed={40}
|
||||||
@@ -79,14 +79,14 @@ export default function LandingPage() {
|
|||||||
title: "Real Moments Matter", description: "Focusing on authentic, unscripted moments that tell the true story of your event.", icon: Zap
|
title: "Real Moments Matter", description: "Focusing on authentic, unscripted moments that tell the true story of your event.", icon: Zap
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/studio-portrait-serious-plump-male-eyeglasses-grey-background_613910-13831.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773930004164-z4y07pms.jpg"
|
||||||
imageAlt="photographer portrait professional headshot studio"
|
imageAlt="photographer portrait professional headshot studio"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View My Work", href: "#portfolio" }
|
{ text: "View My Work", href: "/portfolio" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
ariaLabel="About section with photographer bio"
|
ariaLabel="About section with photographer bio"
|
||||||
@@ -105,33 +105,33 @@ export default function LandingPage() {
|
|||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "portrait-1", brand: "Portraits", name: "Studio Portraits", price: "Professional", rating: 5,
|
id: "portrait-1", brand: "Portraits", name: "Studio Portraits", price: "Professional", rating: 5,
|
||||||
reviewCount: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/creative-product-photographer-studio_23-2148970254.jpg", imageAlt: "professional studio portrait lighting setup dark background"
|
reviewCount: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773930521926-r1of9l15.jpg", imageAlt: "professional studio portrait lighting setup dark background"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "portrait-2", brand: "Portraits", name: "Environmental Portraits", price: "Story-Driven", rating: 5,
|
id: "portrait-2", brand: "Portraits", name: "Environmental Portraits", price: "Story-Driven", rating: 5,
|
||||||
reviewCount: "Authentic", imageSrc: "http://img.b2bpic.net/free-photo/woman-gardner-greenhouse_1303-14078.jpg", imageAlt: "environmental portrait outdoor professional photography"
|
reviewCount: "Authentic", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773930318289-ohch7oj5.jpg", imageAlt: "environmental portrait outdoor professional photography"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "lifestyle-1", brand: "Lifestyle", name: "Lifestyle Sessions", price: "Candid", rating: 5,
|
id: "lifestyle-1", brand: "Lifestyle", name: "Lifestyle Sessions", price: "Candid", rating: 5,
|
||||||
reviewCount: "Natural", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-holding-flowers_23-2149647874.jpg", imageAlt: "lifestyle photography candid moments natural lighting"
|
reviewCount: "Natural", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773930533701-l9gcnazp.jpg", imageAlt: "lifestyle photography candid moments natural lighting"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "lifestyle-2", brand: "Lifestyle", name: "Cultural Moments", price: "Vibrant", rating: 5,
|
id: "lifestyle-2", brand: "Lifestyle", name: "Cultural Moments", price: "Vibrant", rating: 5,
|
||||||
reviewCount: "Diverse", imageSrc: "http://img.b2bpic.net/free-photo/friends-spending-some-quality-time-together_23-2149034103.jpg", imageAlt: "cultural photography diverse people moments authentic"
|
reviewCount: "Diverse", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773930368710-ts06xwgu.jpg", imageAlt: "cultural photography diverse people moments authentic"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "graduation-1", brand: "Graduation", name: "Graduation Photos", price: "Celebratory", rating: 5,
|
id: "graduation-1", brand: "Graduation", name: "Graduation Photos", price: "Celebratory", rating: 5,
|
||||||
reviewCount: "Memorable", imageSrc: "http://img.b2bpic.net/free-photo/blonde-girl-standing-with-crossed-arms-graduate-uniform-looking-pensive_176474-82634.jpg", imageAlt: "graduation photography professional portrait session cap gown"
|
reviewCount: "Memorable", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773930381028-63kwn8sl.jpg", imageAlt: "graduation photography professional portrait session cap gown"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "bw-1", brand: "Black & White", name: "Timeless Black & White", price: "Classic", rating: 5,
|
id: "bw-1", brand: "Black & White", name: "Timeless Black & White", price: "Classic", rating: 5,
|
||||||
reviewCount: "Elegant", imageSrc: "http://img.b2bpic.net/free-photo/attractive-caucasian-blonde-female-white-shirt-posing-brown-background_181624-46502.jpg", imageAlt: "black and white portrait photography professional timeless"
|
reviewCount: "Elegant", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773930392089-0pxfz0bx.jpg", imageAlt: "black and white portrait photography professional timeless"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="bento-grid"
|
gridVariant="bento-grid"
|
||||||
animationType="blur-reveal"
|
animationType="blur-reveal"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book a Session", href: "#booking" }
|
{ text: "Book a Session", href: "/contact-us" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
ariaLabel="Portfolio gallery grid section"
|
ariaLabel="Portfolio gallery grid section"
|
||||||
@@ -162,7 +162,7 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Quick Links", items: [
|
title: "Quick Links", items: [
|
||||||
{ label: "Portfolio", href: "#portfolio" },
|
{ label: "Portfolio", href: "/portfolio" },
|
||||||
{ label: "About", href: "#about" },
|
{ label: "About", href: "#about" },
|
||||||
{ label: "Book Now", href: "#booking" }
|
{ label: "Book Now", href: "#booking" }
|
||||||
]
|
]
|
||||||
|
|||||||
191
src/app/portfolio/page.tsx
Normal file
191
src/app/portfolio/page.tsx
Normal file
@@ -0,0 +1,191 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
import { useState } from 'react';
|
||||||
|
import { X, ChevronLeft, ChevronRight } from 'lucide-react';
|
||||||
|
|
||||||
|
const portfolioImages = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
src: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773929743067-11gh4u5h.jpg',
|
||||||
|
alt: 'Portfolio image 1'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
src: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773929743068-tlxnossh.jpg',
|
||||||
|
alt: 'Portfolio image 2'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
src: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773929743068-vld55ryg.jpg',
|
||||||
|
alt: 'Portfolio image 3'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
src: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773929743068-jkx2y095.jpg',
|
||||||
|
alt: 'Portfolio image 4'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
src: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQ3abHj7nJoV9DleXcQnubKTBh/uploaded-1773929743068-x0adnlrw.jpg',
|
||||||
|
alt: 'Portfolio image 5'
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
export default function PortfolioPage() {
|
||||||
|
const [selectedImageIndex, setSelectedImageIndex] = useState<number | null>(null);
|
||||||
|
|
||||||
|
const handlePrevious = () => {
|
||||||
|
if (selectedImageIndex !== null) {
|
||||||
|
setSelectedImageIndex(
|
||||||
|
selectedImageIndex === 0 ? portfolioImages.length - 1 : selectedImageIndex - 1
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleNext = () => {
|
||||||
|
if (selectedImageIndex !== null) {
|
||||||
|
setSelectedImageIndex(
|
||||||
|
selectedImageIndex === portfolioImages.length - 1 ? 0 : selectedImageIndex + 1
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
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="portfolio" data-section="portfolio" className="w-full min-h-screen py-20 px-4">
|
||||||
|
<div className="max-w-6xl mx-auto">
|
||||||
|
<div className="mb-12">
|
||||||
|
<h1 className="text-5xl font-bold mb-4 text-foreground">Portfolio Gallery</h1>
|
||||||
|
<p className="text-lg text-foreground/80">Click on any image to view it in full detail</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||||
|
{portfolioImages.map((image, index) => (
|
||||||
|
<div
|
||||||
|
key={image.id}
|
||||||
|
onClick={() => setSelectedImageIndex(index)}
|
||||||
|
className="relative overflow-hidden rounded-lg cursor-pointer group h-64 md:h-72"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src={image.src}
|
||||||
|
alt={image.alt}
|
||||||
|
className="w-full h-full object-cover transition-transform duration-300 group-hover:scale-110"
|
||||||
|
/>
|
||||||
|
<div className="absolute inset-0 bg-black/0 group-hover:bg-black/30 transition-colors duration-300 flex items-center justify-center">
|
||||||
|
<div className="opacity-0 group-hover:opacity-100 transition-opacity duration-300">
|
||||||
|
<div className="bg-white rounded-full p-3">
|
||||||
|
<svg className="w-6 h-6 text-black" fill="currentColor" viewBox="0 0 20 20">
|
||||||
|
<path d="M10 12a2 2 0 100-4 2 2 0 000 4z" />
|
||||||
|
<path fillRule="evenodd" d="M.458 10C1.732 5.943 5.522 3 10 3s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7S1.732 14.057.458 10zM14 10a4 4 0 11-8 0 4 4 0 018 0z" clipRule="evenodd" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{selectedImageIndex !== null && (
|
||||||
|
<div className="fixed inset-0 bg-black/90 z-50 flex items-center justify-center p-4">
|
||||||
|
<div className="relative w-full h-full flex items-center justify-center">
|
||||||
|
<button
|
||||||
|
onClick={() => setSelectedImageIndex(null)}
|
||||||
|
className="absolute top-4 right-4 z-10 bg-white rounded-full p-2 hover:bg-gray-200 transition-colors"
|
||||||
|
aria-label="Close lightbox"
|
||||||
|
>
|
||||||
|
<X className="w-6 h-6 text-black" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
onClick={handlePrevious}
|
||||||
|
className="absolute left-4 top-1/2 -translate-y-1/2 z-10 bg-white rounded-full p-2 hover:bg-gray-200 transition-colors"
|
||||||
|
aria-label="Previous image"
|
||||||
|
>
|
||||||
|
<ChevronLeft className="w-6 h-6 text-black" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div className="max-w-4xl max-h-full flex items-center justify-center">
|
||||||
|
<img
|
||||||
|
src={portfolioImages[selectedImageIndex].src}
|
||||||
|
alt={portfolioImages[selectedImageIndex].alt}
|
||||||
|
className="max-w-full max-h-full object-contain"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button
|
||||||
|
onClick={handleNext}
|
||||||
|
className="absolute right-4 top-1/2 -translate-y-1/2 z-10 bg-white rounded-full p-2 hover:bg-gray-200 transition-colors"
|
||||||
|
aria-label="Next image"
|
||||||
|
>
|
||||||
|
<ChevronRight className="w-6 h-6 text-black" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div className="absolute bottom-4 left-1/2 -translate-x-1/2 bg-white/20 backdrop-blur-sm rounded-full px-4 py-2 text-white">
|
||||||
|
{selectedImageIndex + 1} / {portfolioImages.length}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</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: "/portfolio" },
|
||||||
|
{ label: "About", href: "/#about" },
|
||||||
|
{ label: "Book Now", href: "/#booking" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user