14 Commits

Author SHA1 Message Date
87d606f780 Update src/app/page.tsx 2026-03-06 23:43:49 +00:00
14b036eea8 Merge version_7 into main
Merge version_7 into main
2026-03-06 23:41:54 +00:00
363ce6c6be Update src/app/styles/variables.css 2026-03-06 23:41:50 +00:00
d90232b8eb Update src/app/page.tsx 2026-03-06 23:41:49 +00:00
3eb2bd72e6 Merge version_6 into main
Merge version_6 into main
2026-03-06 23:36:36 +00:00
6f19d46a7f Update src/app/page.tsx 2026-03-06 23:36:32 +00:00
8d2ff4b1e5 Merge version_5 into main
Merge version_5 into main
2026-03-06 23:33:51 +00:00
7d736ea6c3 Update src/app/page.tsx 2026-03-06 23:33:46 +00:00
b699f2a1c0 Merge version_4 into main
Merge version_4 into main
2026-03-06 23:03:18 +00:00
f909edbf23 Update src/app/page.tsx 2026-03-06 23:03:14 +00:00
9123c1fd4e Merge version_3 into main
Merge version_3 into main
2026-03-06 23:01:27 +00:00
7497cdad3d Update src/app/page.tsx 2026-03-06 23:01:23 +00:00
cf537badef Update src/app/layout.tsx 2026-03-06 23:01:22 +00:00
8bf41bffde Merge version_2 into main
Merge version_2 into main
2026-03-06 22:58:47 +00:00
3 changed files with 45 additions and 28 deletions

View File

@@ -16,16 +16,18 @@ const inter = Inter({
export const metadata: Metadata = {
title: "Trevor Melton | Luxury Real Estate Photography South Florida", description: "Premium architectural and luxury real estate photography elevating high-end property listings. Crystalline clarity, liquid glass aesthetic, minimalist sophistication.", keywords: "luxury real estate photography, architectural photography, South Florida, premium property marketing, high-end photography", metadataBase: new URL("https://trevormelton.com"),
alternates: {
canonical: "https://trevormelton.com"},
canonical: "https://trevormelton.com"
},
openGraph: {
title: "Trevor Melton Photography", description: "Luxury spaces captured in crystalline clarity", url: "https://trevormelton.com", siteName: "Trevor Melton Photography", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/young-beautiful-woman-going-up-stairs-walking-down-city_176420-4026.jpg", alt: "Luxury architectural photography"},
],
url: "http://img.b2bpic.net/free-photo/young-beautiful-woman-going-up-stairs-walking-down-city_176420-4026.jpg", alt: "Luxury architectural photography"
}
]
},
twitter: {
card: "summary_large_image", title: "Trevor Melton | Luxury Photography", description: "Premium architectural and real estate photography", images: ["http://img.b2bpic.net/free-photo/young-beautiful-woman-going-up-stairs-walking-down-city_176420-4026.jpg"],
},
card: "summary_large_image", title: "Trevor Melton | Luxury Photography", description: "Premium architectural and real estate photography", images: ["http://img.b2bpic.net/free-photo/young-beautiful-woman-going-up-stairs-walking-down-city_176420-4026.jpg"]
}
};
export default function RootLayout({

View File

@@ -20,9 +20,9 @@ export default function LandingPage() {
contentWidth="medium"
sizing="mediumSizeLargeTitles"
background="blurBottom"
cardStyle="soft-shadow"
cardStyle="glass-elevated"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
@@ -44,7 +44,7 @@ export default function LandingPage() {
title="Luxury spaces captured in crystalline clarity"
description="Architectural and real estate photography that elevates premium properties. Liquid glass aesthetic meets sophisticated minimalism—every frame designed to sell vision"
background={{ variant: "sparkles-gradient" }}
buttons={[{ text: "Explore Gallery", href: "#portfolio" }]}
buttons={[{ text: "View Premium Projects", href: "#portfolio" }]}
imageSrc="http://img.b2bpic.net/free-photo/young-beautiful-woman-going-up-stairs-walking-down-city_176420-4026.jpg"
imageAlt="Luxury modern residential architecture"
mediaAnimation="slide-up"
@@ -60,10 +60,17 @@ export default function LandingPage() {
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
buttons={[{ text: "Request a Quote", href: "#contact" }]}
products={[
{ id: "luxury-penthouse", name: "Luxury Penthouse Interior", price: "Premium Residential", variant: "Contemporary Design", imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-living-room_1203-2722.jpg?_wi=1", imageAlt: "Luxury penthouse interior with floor-to-ceiling windows"},
{ id: "commercial-building", name: "Commercial Building Exterior", price: "Architectural", variant: "Modern Commercial", imageSrc: "http://img.b2bpic.net/free-photo/new-business-district-garibaldi_268835-740.jpg?_wi=1", imageAlt: "Contemporary commercial building with glass facade"},
{ id: "luxury-pool", name: "Luxury Outdoor Living", price: "Residential Exterior", variant: "Pool & Landscape", imageSrc: "http://img.b2bpic.net/free-photo/brown-wooden-bench-near-green-plants_250224-381.jpg", imageAlt: "High-end residential pool area with modern design"},
{
id: "luxury-penthouse", name: "Luxury Penthouse Interior", price: "Premium Residential", variant: "Contemporary Design", imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-living-room_1203-2722.jpg?_wi=1", imageAlt: "Luxury penthouse interior with floor-to-ceiling windows"
},
{
id: "commercial-building", name: "Commercial Building Exterior", price: "Architectural", variant: "Modern Commercial", imageSrc: "http://img.b2bpic.net/free-photo/new-business-district-garibaldi_268835-740.jpg?_wi=1", imageAlt: "Contemporary commercial building with glass facade"
},
{
id: "luxury-pool", name: "Luxury Outdoor Living", price: "Residential Exterior", variant: "Pool & Landscape", imageSrc: "http://img.b2bpic.net/free-photo/brown-wooden-bench-near-green-plants_250224-381.jpg", imageAlt: "High-end residential pool area with modern design"
},
]}
gridVariant="three-columns-all-equal-width"
carouselMode="buttons"
@@ -73,7 +80,9 @@ export default function LandingPage() {
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Specializing in luxury real estate and architectural photography for South Florida's most discerning developers and designers"},
{
type: "text", content: "Specializing in luxury real estate and architectural photography for South Florida's most discerning developers and designers"
},
]}
useInvertedBackground={false}
buttons={[{ text: "Learn More", href: "#contact" }]}
@@ -88,12 +97,13 @@ export default function LandingPage() {
tag="Photography Services"
tagIcon={Aperture}
textboxLayout="default"
animationType="slide-up"
animationType="blur-reveal"
useInvertedBackground={false}
features={[
{
id: "1", title: "Luxury Residential Photography", description: "Premium interior and exterior photography that captures the elegance and investment value of high-end residential properties. Every detail highlighted to attract qualified buyers.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-living-room_1203-2722.jpg?_wi=2"},
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-living-room_1203-2722.jpg?_wi=2"
},
items: [
{ icon: Camera, text: "Professional lighting techniques" },
{ icon: Sparkles, text: "Crystalline clarity focus" },
@@ -103,7 +113,8 @@ export default function LandingPage() {
},
{
id: "2", title: "Architectural Documentation", description: "Comprehensive photography services for commercial projects and architectural firms. Showcase design details, materials, and spatial elegance that define premium properties.", media: {
imageSrc: "http://img.b2bpic.net/free-photo/new-business-district-garibaldi_268835-740.jpg?_wi=2"},
imageSrc: "http://img.b2bpic.net/free-photo/new-business-district-garibaldi_268835-740.jpg?_wi=2"
},
items: [
{ icon: Ruler, text: "Precise composition" },
{ icon: Eye, text: "Detail-oriented approach" },
@@ -122,17 +133,21 @@ export default function LandingPage() {
tag="Client Testimonials"
tagIcon={Star}
textboxLayout="default"
animationType="slide-up"
animationType="blur-reveal"
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Victoria Ramirez", handle: "Luxury Real Estate Developer", testimonial: "Trevor's photography elevated our property listings beyond expectations. His crystalline clarity captures every architectural detail that sells premium homes.", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-city_1157-16547.jpg", imageAlt: "Victoria Ramirez"},
id: "1", name: "Victoria Ramirez", handle: "Luxury Real Estate Developer", testimonial: "Trevor's photography elevated our property listings beyond expectations. His crystalline clarity captures every architectural detail that sells premium homes.", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-city_1157-16547.jpg", imageAlt: "Victoria Ramirez"
},
{
id: "2", name: "Marcus Chen", handle: "Commercial Property Developer", testimonial: "The architectural documentation from Trevor transformed how we present our commercial projects. His liquid glass aesthetic is unmistakable.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-tablet_1098-135.jpg", imageAlt: "Marcus Chen"},
id: "2", name: "Marcus Chen", handle: "Commercial Property Developer", testimonial: "The architectural documentation from Trevor transformed how we present our commercial projects. His liquid glass aesthetic is unmistakable.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-with-tablet_1098-135.jpg", imageAlt: "Marcus Chen"
},
{
id: "3", name: "Alexandra Moretti", handle: "Interior Designer", testimonial: "Working with Trevor's photography amplifies my design work. His minimalist approach lets the architecture speak for itself beautifully.", imageSrc: "http://img.b2bpic.net/free-photo/older-woman-with-blueprints_1149-1156.jpg", imageAlt: "Alexandra Moretti"},
id: "3", name: "Alexandra Moretti", handle: "Interior Designer", testimonial: "Working with Trevor's photography amplifies my design work. His minimalist approach lets the architecture speak for itself beautifully.", imageSrc: "http://img.b2bpic.net/free-photo/older-woman-with-blueprints_1149-1156.jpg", imageAlt: "Alexandra Moretti"
},
{
id: "4", name: "James Mitchell", handle: "Real Estate Agent - Luxury Homes", testimonial: "Trevor's photos close deals. The way he captures sophistication and detail creates immediate buyer interest. Absolutely essential for premium listings.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-proferssional-pondering-idea-with-cup-tea_1098-20464.jpg", imageAlt: "James Mitchell"},
id: "4", name: "James Mitchell", handle: "Real Estate Agent - Luxury Homes", testimonial: "Trevor's photos close deals. The way he captures sophistication and detail creates immediate buyer interest. Absolutely essential for premium listings.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-proferssional-pondering-idea-with-cup-tea_1098-20464.jpg", imageAlt: "James Mitchell"
},
]}
speed={40}
topMarqueeDirection="left"
@@ -145,7 +160,7 @@ export default function LandingPage() {
animationType="entrance-slide"
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[{ text: "Get in Touch", href: "mailto:contact@trevormelton.com" }]}
buttons={[{ text: "Get Your Quote Today", href: "mailto:contact@trevormelton.com" }]}
/>
</div>

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f6f0e9;
--card: #efe7dd;
--foreground: #2b180a;
--primary-cta: #2b180a;
--background: #f5f4ef;
--card: #efe8e0;
--foreground: #1a1815;
--primary-cta: #2b2420;
--primary-cta-text: #f6f0e9;
--secondary-cta: #efe7dd;
--secondary-cta: #e8e2d9;
--secondary-cta-text: #2b180a;
--accent: #94877c;
--background-accent: #afa094;
--accent: #c5b8a8;
--background-accent: #b8a99a;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);