Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a18bebd1d2 | |||
| 289d797539 | |||
| 318d9f7a37 | |||
| e68257d43a | |||
| 406781540f | |||
| becf2ef8d4 | |||
| 381e8e4a47 | |||
| 9404113f98 | |||
| 4dde058531 | |||
| e098da26ed | |||
| a3d7d993bf | |||
| dece214ab0 | |||
| 718143afcf | |||
| 15acbf6396 | |||
| fdf10f9b42 | |||
| 082b7d0d0c |
@@ -1,59 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Premium Modular Homes | Sustainable Architecture", description: "Build your dream home in weeks. Sustainable, customizable modular homes designed for modern living. Luxury architecture meets eco-conscious design.", keywords: "modular homes, sustainable architecture, prefab homes, luxury homes, Scandinavian design, eco-friendly construction", metadataBase: new URL("https://modularliving.com"),
|
||||
alternates: {
|
||||
canonical: "https://modularliving.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Premium Modular Homes | Sustainable Architecture", description: "Experience luxury modular homes built with sustainable materials and intelligent design. From concept to completion in weeks.", url: "https://modularliving.com", siteName: "Modular Living", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/long-shot-runner-taking-break_23-2148274732.jpg", alt: "Luxury modular home in nature"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Premium Modular Homes | Sustainable Architecture", description: "Luxury modular homes built sustainably. Design, manufacture, and installation in weeks.", images: ["http://img.b2bpic.net/free-photo/long-shot-runner-taking-break_23-2148274732.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Modular Living - Build Your Dream Home in Weeks", description: "Sustainable, architecturally stunning modular homes designed for modern living. Build your dream home in weeks, not years."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
@@ -42,27 +42,16 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
title="Build Your Dream Home in Weeks, Not Years"
|
||||
description="Sustainable, architecturally stunning modular homes designed for the modern lifestyle. Premium materials, intelligent design, delivered fast."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/content-senior-businessman-with-arms-crossed_1262-1790.jpg", alt: "Happy homeowner"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/curly-woman-eyeglasses-black-jacket-writting-outdoors-beautiful-woman-with-red-lipstick-brunette-hair-sitting-stairs_197531-19326.jpg", alt: "Satisfied client"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/handsome-gay-official-suit-looking-camera-front-view-bearded-caucasian-man-smiling-camera-getting-dressed-wedding-ceremony-with-lover-lgbt-love-marriage-concept_74855-22937.jpg", alt: "Family in new home"
|
||||
}
|
||||
]}
|
||||
avatarText="Join 500+ families in their modular homes"
|
||||
<HeroBillboardScroll
|
||||
title="Build your dream home in weeks, not years"
|
||||
description="Sustainable, architecturally stunning modular homes designed for the modern lifestyle."
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/photorealistic-wooden-house-with-timber-structure_23-2151302616.jpg?_wi=2"
|
||||
imageAlt="Modular home exterior"
|
||||
buttons={[
|
||||
{ text: "Explore Models", href: "models" },
|
||||
{ text: "Book Consultation", href: "contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
ariaLabel="Hero section for modular homes landing page"
|
||||
/>
|
||||
</div>
|
||||
@@ -102,7 +91,7 @@ export default function LandingPage() {
|
||||
tagIcon={Camera}
|
||||
features={[
|
||||
{
|
||||
id: "01", title: "Forest Escape", description: "Glass and timber blending seamlessly with nature. A sanctuary for modern living.", imageSrc: "http://img.b2bpic.net/free-photo/path-leads-white-building-green-hill_1304-3762.jpg", imageAlt: "Modern home in forest"
|
||||
id: "01", title: "Forest Escape", description: "Glass and timber blending seamlessly with nature. A sanctuary for modern living.", imageSrc: "http://img.b2bpic.net/free-photo/path-leads-white-building-green-hill_1304-3762.jpg?_wi=2", imageAlt: "Modern home in forest"
|
||||
},
|
||||
{
|
||||
id: "02", title: "Open Living", description: "Flowing spaces designed for connection. Light-filled interiors with zero-waste construction.", imageSrc: "http://img.b2bpic.net/free-photo/modern-interior-lobby-with-uncommon-furniture_1262-3576.jpg", imageAlt: "Open interior space"
|
||||
@@ -156,10 +145,10 @@ export default function LandingPage() {
|
||||
tagIcon={Home}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Essential Home", price: "€185,000", imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-wooden-house-with-timber-structure_23-2151302616.jpg", imageAlt: "Essential modular home"
|
||||
id: "1", name: "Essential Home", price: "€185,000", imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-wooden-house-with-timber-structure_23-2151302616.jpg?_wi=2", imageAlt: "Essential modular home"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Comfort Plus", price: "€275,000", imageSrc: "http://img.b2bpic.net/free-photo/home-interior-with-decorative-items-wooden-table_169016-1693.jpg", imageAlt: "Comfort Plus modular home"
|
||||
id: "2", name: "Comfort Plus", price: "€275,000", imageSrc: "http://img.b2bpic.net/free-photo/home-interior-with-decorative-items-wooden-table_169016-1693.jpg?_wi=2", imageAlt: "Comfort Plus modular home"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Luxury Estate", price: "€425,000", imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-house-with-wooden-architecture-timber-structure_23-2151302593.jpg", imageAlt: "Luxury Estate modular home"
|
||||
@@ -212,7 +201,7 @@ export default function LandingPage() {
|
||||
tag="Start Your Project"
|
||||
tagIcon={Sparkles}
|
||||
title="Ready to Build Your Dream Home?"
|
||||
description="Connect with our design team today. Get personalized guidance on your modular home journey, from concept to completion."
|
||||
description="Schedule a free 20-minute consultation with our design team. We'll guide you through options, timeline, and pricing."
|
||||
background={{ variant: "downward-rays-animated-grid" }}
|
||||
useInvertedBackground={true}
|
||||
inputPlaceholder="your@email.com"
|
||||
@@ -251,4 +240,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000f06e6;
|
||||
--primary-cta: #0a7039;
|
||||
--background: #000000;
|
||||
--card: #1a2f1d;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #ffffff;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta: #0d200f;
|
||||
--secondary-cta-text: #000f06e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
--accent: #1a3d1f;
|
||||
--background-accent: #355e3b;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user