12 Commits

Author SHA1 Message Date
83216760b1 Update src/app/page.tsx 2026-06-09 22:44:31 +00:00
f305f49ab2 Merge version_4 into main
Merge version_4 into main
2026-06-08 23:26:59 +00:00
a8d9275930 Remove watermark 2026-06-08 23:26:56 +00:00
9c53d01e2e Merge version_4 into main
Merge version_4 into main
2026-06-07 22:50:46 +00:00
b8edf4c8db Update src/app/page.tsx 2026-06-07 22:50:43 +00:00
b96f937231 Merge version_3 into main
Merge version_3 into main
2026-06-07 22:43:51 +00:00
92daf32d6c Update src/app/page.tsx 2026-06-07 22:43:48 +00:00
d0bb67c9d7 Merge version_2 into main
Merge version_2 into main
2026-06-07 22:37:13 +00:00
610162dafc Update src/app/styles/variables.css 2026-06-07 22:37:07 +00:00
62dafbedaa Update src/app/page.tsx 2026-06-07 22:37:07 +00:00
bc940f5a8c Merge version_1 into main
Merge version_1 into main
2026-06-07 22:20:40 +00:00
6a43387cf7 Merge version_1 into main
Merge version_1 into main
2026-06-07 22:19:51 +00:00
3 changed files with 22 additions and 13 deletions

View File

@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Roboto } from "next/font/google";
@@ -56,7 +55,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -45,9 +45,10 @@ export default function LandingPage() {
{
name: "Contact", id: "#contact"},
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=okkzgc"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EpLicFwrF5qAlo4BS5zWMKNijA/uploaded-1780872198017-tazpeeq6.jpg"
logoAlt="LA Roofing Company Logo"
brandName="LA Roofing Co."
logoImageClassName="h-12 w-auto object-contain"
/>
</div>
@@ -246,6 +247,15 @@ export default function LandingPage() {
inputPlaceholder="Enter your email"
buttonText="Schedule Inspection"
termsText="By submitting, you agree to receive communications from LA Roofing Co."
onSubmit={(submittedEmail: string) => {
// This is a client-side handler.
// To send a notification email, this function needs to interact with a backend service.
// The current frontend code cannot directly send emails.
// A typical implementation would involve making an API call to a server-side endpoint,
// which would then handle the email delivery to 'syedmohib223@icloud.com'.
console.log(`Form submitted with email: ${submittedEmail}.`);
console.log(`ACTION REQUIRED: Implement a backend API call here to send this email to syedmohib223@icloud.com.`);
}}
/>
</div>
@@ -289,7 +299,7 @@ export default function LandingPage() {
],
},
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=okkzgc"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EpLicFwrF5qAlo4BS5zWMKNijA/uploaded-1780872198017-tazpeeq6.jpg"
logoAlt="LA Roofing Company Logo"
logoText="LA Roofing Co."
copyrightText="© 2024 LA Roofing Co. All rights reserved."

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fbfaff;
--card: #f7f5ff;
--foreground: #0f0022;
--primary-cta: #8b5cf6;
--primary-cta-text: #fbfaff;
--secondary-cta: #ffffff;
--secondary-cta-text: #0f0022;
--accent: #d8cef5;
--background-accent: #c4a8f9;
--background: #000000;
--card: #0c0c0c;
--foreground: #ffffff;
--primary-cta: #cee7ff;
--primary-cta-text: #000000;
--secondary-cta: #000000;
--secondary-cta-text: #ffffff;
--accent: #535353;
--background-accent: #CEE7FF;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);