Compare commits
26 Commits
version_6
...
version_13
| Author | SHA1 | Date | |
|---|---|---|---|
| de25d33c7e | |||
| 83763f2a0d | |||
| 5cb210fe09 | |||
| 200641177a | |||
| 23440f694a | |||
| e09fb0d4bd | |||
| a237b8a778 | |||
| f96bbc9678 | |||
| f9336aed36 | |||
| fa511cc5b3 | |||
| eae4670d57 | |||
| cd08c2a724 | |||
| 50cbf3e904 | |||
| 37ae3e554a | |||
| e4601ce319 | |||
| 7bb558a0fa | |||
| 8e9d36c4e2 | |||
| 71d4bd3c05 | |||
| 8aa8d457fe | |||
| a4718e3e13 | |||
| c47b7880da | |||
| ba716a5c26 | |||
| 9e4a5c2f19 | |||
| 0527b3fdf0 | |||
| 4134a7e83a | |||
| 25e2ad8628 |
@@ -6,6 +6,8 @@ import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,8 +22,15 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat",
|
||||
|
||||
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -33,7 +42,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -37,7 +37,7 @@ export default function LandingPage() {
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Junior Pools"
|
||||
button={{ text: "Get a Quote", href: "#contact" }}
|
||||
button={{ text: "Call Now", href: "tel:7609806785" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -73,9 +73,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ title: "Weekly Maintenance", description: "Regular skimming, vacuuming, and chemical balancing to keep your pool sparkling clean.", imageSrc: "http://img.b2bpic.net/free-photo/stairs-pool_1232-1148.jpg" },
|
||||
{ title: "Equipment Repair", description: "Expert diagnostics and repair for filters, pumps, and heaters. We handle the things that go wrong.", imageSrc: "http://img.b2bpic.net/free-photo/swimming-pool_1385-2261.jpg" },
|
||||
{ title: "Water Chemistry", description: "Precision testing and balancing for safe, healthy water for your family and guests.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-chemist-white-special-suit-holding-little-flask-with-blue-solution-cream-desk-lab-chemistry-science-experiment_140725-37939.jpg" }
|
||||
{ title: "Weekly Maintenance", description: "Regular skimming, vacuuming, and chemical balancing to keep your pool sparkling clean.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CBgCzJx6icMeS9sMpXARx56CR9/uploaded-1776542859618-98asu08q.jpg" },
|
||||
{ title: "Equipment Repair", description: "Expert diagnostics and repair for filters, pumps, and heaters. We handle the things that go wrong.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CBgCzJx6icMeS9sMpXARx56CR9/uploaded-1776542867057-8vzbi3fn.jpg" },
|
||||
{ title: "Water Chemistry", description: "Precision testing and balancing for safe, healthy water for your family and guests.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CBgCzJx6icMeS9sMpXARx56CR9/uploaded-1776542870789-3ti7owzk.webp" }
|
||||
]}
|
||||
title="Comprehensive Pool Maintenance"
|
||||
description="We offer a full suite of services to keep your pool in top condition all year round."
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f5f5;
|
||||
--card: #ffffff;
|
||||
--foreground: #1c1c1c;
|
||||
--primary-cta: #1c1c1c;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #15479c;
|
||||
--background-accent: #a8cce8;
|
||||
--background: #020617;
|
||||
--card: #0f172a;
|
||||
--foreground: #e2e8f0;
|
||||
--primary-cta: #c4d8f9;
|
||||
--primary-cta-text: #020617;
|
||||
--secondary-cta: #041633;
|
||||
--secondary-cta-text: #e2e8f0;
|
||||
--accent: #2d30f3;
|
||||
--background-accent: #1d4ed8;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user