Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 504eb55fe1 | |||
| 1b8d72a7ff | |||
| 5c5478f45e |
@@ -1,46 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } 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 poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "337 Painting & Cleaning | Professional Home Services", description: "Expert painting and cleaning services for residential and commercial properties. Professional team, quality results, transparent pricing. Get your free quote today.", keywords: "painting services, house cleaning, professional painters, interior painting, exterior painting, pressure washing, home maintenance", openGraph: {
|
||||
title: "337 Painting & Cleaning | Transform Your Home", description: "Professional painting and cleaning services with 15+ years of experience. Over 500 satisfied clients.", siteName: "337 Painting & Cleaning", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "337 Painting & Cleaning Services", description: "Expert home painting and cleaning solutions for residential and commercial properties."},
|
||||
};
|
||||
title: "337 Painting & Cleaning", description: "Professional painting and cleaning services for residential and commercial properties."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1408,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -127,6 +127,16 @@ export default function LandingPage() {
|
||||
description="Choose the plan that fits your needs. All quotes include detailed breakdowns with no hidden fees."
|
||||
tag="Affordable Services"
|
||||
plans={[
|
||||
{
|
||||
id: "2", badge: "Most Popular", badgeIcon: Home,
|
||||
price: "$1,299", subtitle: "Best overall value - Complete interior transformation", buttons: [
|
||||
{ text: "Get Quote", href: "contact" },
|
||||
{ text: "Learn More" },
|
||||
],
|
||||
features: [
|
||||
"All interior rooms included", "Custom color consultation", "Furniture protection", "2-year warranty on work"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "1", badge: "Single Room", badgeIcon: Palette,
|
||||
price: "$299", subtitle: "Perfect for quick updates and touch-ups", buttons: [
|
||||
@@ -137,16 +147,6 @@ export default function LandingPage() {
|
||||
"Up to 250 sq ft coverage", "Surface preparation included", "Premium paint quality", "1-year warranty on work"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2", badge: "Whole House", badgeIcon: Home,
|
||||
price: "$1,299", subtitle: "Complete interior transformation", buttons: [
|
||||
{ text: "Get Quote", href: "contact" },
|
||||
{ text: "Learn More" },
|
||||
],
|
||||
features: [
|
||||
"All interior rooms included", "Custom color consultation", "Furniture protection", "2-year warranty on work"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3", badge: "Deep Clean", badgeIcon: Sparkles,
|
||||
price: "$599", subtitle: "Professional home cleaning service", buttons: [
|
||||
|
||||
Reference in New Issue
Block a user