12 Commits

Author SHA1 Message Date
dd4842b91e Update theme fonts 2026-03-19 20:40:57 +00:00
de080817b7 Update theme fonts 2026-03-19 20:40:56 +00:00
0307dcbd82 Update src/app/page.tsx 2026-03-19 20:40:40 +00:00
f0d99d0305 Update theme fonts 2026-03-19 20:40:29 +00:00
f563e1be33 Update theme fonts 2026-03-19 20:40:28 +00:00
8f2ed5481d Update src/app/page.tsx 2026-03-19 20:35:13 +00:00
d230b638a3 Update src/app/page.tsx 2026-03-19 20:33:46 +00:00
cfd19db79f Merge version_1 into main
Merge version_1 into main
2026-03-19 20:32:08 +00:00
0ae3c06f8d Update theme colors 2026-03-19 20:32:02 +00:00
62765b8806 Update src/app/page.tsx 2026-03-19 20:30:58 +00:00
1182f70ddb Switch to version 1: modified src/app/page.tsx 2026-03-19 20:30:02 +00:00
3aced4eee8 Merge version_2 into main
Merge version_2 into main
2026-03-19 20:29:27 +00:00
4 changed files with 15 additions and 11 deletions

View File

@@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
import { Roboto } from "next/font/google";
@@ -14,8 +15,12 @@ export const metadata: Metadata = {
description: 'Experience premium dental care at Lumineux Dental. Expert cosmetic dentistry, dental implants, and orthodontics in a luxury environment.',
};
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -26,7 +31,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body className={`${roboto.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -27,9 +27,8 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Elite Plumbing Solutions"
brandName="G. MCARDLE"
navItems={[
{ name: "Home", id: "hero" },
{ name: "Services", id: "features" },
{ name: "About", id: "about" },
{ name: "Testimonials", id: "testimonials" },
@@ -45,7 +44,7 @@ export default function LandingPage() {
<HeroSplitKpi
title="Professional Plumbing Services You Can Trust"
description="Expert plumbing solutions for residential and commercial properties. Fast response times, transparent pricing, and guaranteed workmanship. Available 24/7 for emergency repairs."
tag="Professional Plumbing"
tag="Professional Plumbing in Carlisle"
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
@@ -60,7 +59,7 @@ export default function LandingPage() {
]}
enableKpiAnimation={true}
background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/indoor-hotel-view_1417-1562.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/premium-photo/male-plumber-hands-fixing-metal-sink-pipe_386185-5648.jpg?id=20009150"
imageAlt="Professional plumbing installation"
mediaAnimation="opacity"
imagePosition="right"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-roboto), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-roboto), sans-serif;
}

View File

@@ -12,11 +12,11 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--foreground: #000000;
--primary-cta: #000000;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--secondary-cta-text: #000000;
--accent: #e2e2e2;
--background-accent: #c4c4c4;