Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f7cebb105 | |||
| c534bc699d | |||
| d11e75f0c4 | |||
| f1f922f00c | |||
| 72ad4abd29 | |||
| fc97ca3811 | |||
| 1d9b6761ac | |||
| a1d09d459d | |||
| 158ab106a8 | |||
| f130209cd1 | |||
| 1b34d4981f |
@@ -1,49 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } 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 inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "MG Junk Removal | Professional Hauling Services", description: "Fast, reliable junk removal for residential, commercial, and construction debris. Damage-free guarantee. Transparent pricing. Quote in 15 minutes.", keywords: "junk removal, debris hauling, residential cleanup, commercial junk removal, construction cleanup, professional hauling", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "MG Junk Removal | Professional Hauling Services", description: "Fast, reliable junk removal for residential, commercial, and construction debris. Damage-free guarantee. Transparent pricing. Quote in 15 minutes.", type: "website", siteName: "MG Junk Removal", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeF2nBkuTBNPSJvZN5m49LNtNg/uploaded-1772945874277-vt9q76uj.png", alt: "Professional junk removal truck"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "MG Junk Removal | Professional Hauling Services", description: "Fast, reliable junk removal for residential, commercial, and construction debris. Damage-free guarantee.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeF2nBkuTBNPSJvZN5m49LNtNg/uploaded-1772945874277-vt9q76uj.png"],
|
||||
},
|
||||
};
|
||||
title: "MG Junk Removal", description: "Professional junk removal services with transparent pricing and damage-free guarantee."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -186,7 +186,7 @@ export default function LandingPage() {
|
||||
imageAlt="MG Junk Removal team ready to help"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="your@email.com"
|
||||
inputPlaceholder="Enter your email for quote"
|
||||
buttonText="Get Quote"
|
||||
termsText="We respect your privacy. Unsubscribe at any time. By submitting, you agree to our Terms and Conditions."
|
||||
/>
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f4f0;
|
||||
--background: #e3deea;
|
||||
--card: #ffffff;
|
||||
--foreground: #1a1a1a;
|
||||
--primary-cta: #2c2c2c;
|
||||
--primary-cta-text: #f5f4f0;
|
||||
--secondary-cta: #f5f4f0;
|
||||
--secondary-cta-text: #1a1a1a;
|
||||
--accent: #8a8a8a;
|
||||
--background-accent: #e8e6e1;
|
||||
--foreground: #27231f;
|
||||
--primary-cta: #27231f;
|
||||
--primary-cta-text: #e3deea;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #27231f;
|
||||
--accent: #c68a62;
|
||||
--background-accent: #c68a62;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user