6 Commits

Author SHA1 Message Date
90f8600486 Update src/app/page.tsx 2026-03-04 02:19:40 +00:00
21c382c74a Update src/app/page.tsx 2026-03-04 02:18:49 +00:00
1966be20d3 Update src/app/layout.tsx 2026-03-04 02:18:49 +00:00
00601bf847 Merge version_2 into main
Merge version_2 into main
2026-03-04 00:29:50 +00:00
86ce5bde47 Merge version_2 into main
Merge version_2 into main
2026-03-04 00:28:49 +00:00
db7d7fa921 Merge version_2 into main
Merge version_2 into main
2026-03-04 00:27:10 +00:00
2 changed files with 6 additions and 10 deletions

View File

@@ -1,16 +1,13 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Sarabia Sealing - Professional Driveway & Parking Lot Sealing in O'Fallon, IL", description: "Expert driveway and parking lot sealing services in O'Fallon, IL. Free estimates for residential and commercial projects. Trusted by hundreds of homeowners and businesses.", keywords: "driveway sealing, parking lot sealing, sealcoating, O'Fallon IL, asphalt sealing, concrete sealing", openGraph: {
title: "Sarabia Sealing - Professional Sealing Services", description: "Protect your surfaces with expert sealing solutions in O'Fallon, IL", type: "website"},
};
title: "Sarabia Sealing | Professional Driveway & Parking Lot Sealing", description: "Expert driveway and parking lot sealing services in O'Fallon, IL. Free estimates, professional team, 15+ years of experience."};
export default function RootLayout({
children,
@@ -19,7 +16,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.variable}>
<body className={inter.className}>
{children}
<script

View File

@@ -3,14 +3,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Shield, Wrench, MessageSquare, MapPin, Phone, Star } from 'lucide-react';
import { Shield, Wrench, Phone, Star } from 'lucide-react';
export default function LandingPage() {
return (