3 Commits

Author SHA1 Message Date
abac95da0f Update src/app/page.tsx 2026-03-08 11:01:16 +00:00
8165993d53 Update src/app/layout.tsx 2026-03-08 11:01:15 +00:00
32e9803f1c Merge version_1 into main
Merge version_1 into main
2026-03-08 10:59:15 +00:00
2 changed files with 9 additions and 34 deletions

View File

@@ -1,44 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "@/styles/globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const libreBaskerville = Libre_Baskerville({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "m2invest | Modern Homes & Solar Energy Solutions", description: "Discover sustainable residential architecture integrated with premium solar energy systems. m2invest builds modern homes designed for your lifestyle and our planet.", keywords: "modern homes, solar panels, sustainable architecture, residential construction, renewable energy, eco-friendly homes", robots: { title: "m2invest", description: "Build your dream home with sustainable energy"};
index: true,
follow: true,
},
openGraph: {
title: "m2invest | Modern Sustainable Homes", description: "Build your dream home with integrated solar energy technology", type: "website", siteName: "m2invest"},
twitter: {
card: "summary_large_image", title: "m2invest | Modern Homes with Solar Energy"},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1406,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -204,7 +204,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactSplit
tag="Get In Touch" tag="Get Started Today"
tagIcon={Mail} tagIcon={Mail}
tagAnimation="slide-up" tagAnimation="slide-up"
title="Ready to Build Your Future" title="Ready to Build Your Future"
@@ -216,7 +216,7 @@ export default function LandingPage() {
mediaAnimation="slide-up" mediaAnimation="slide-up"
mediaPosition="right" mediaPosition="right"
inputPlaceholder="your@email.com" inputPlaceholder="your@email.com"
buttonText="Subscribe" buttonText="Send Inquiry"
termsText="We respect your privacy. Unsubscribe at any time. By subscribing, you agree to our Privacy Policy." termsText="We respect your privacy. Unsubscribe at any time. By subscribing, you agree to our Privacy Policy."
/> />
</div> </div>