Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ff641a0e3d | |||
| 97433b3bfd | |||
| 4ebaf83e29 | |||
| ad0cd20a24 | |||
| 22f987b547 | |||
| 183740f280 | |||
| fbe6c08a37 | |||
| 1f7a0768e5 | |||
| 0df81e1bce | |||
| cae4e2a1aa | |||
| c600f7f1b7 | |||
| 44f872f8dd | |||
| 0d7d5a73b5 | |||
| c8587bc872 | |||
| eade7f56bc | |||
| 5e51869b9d | |||
| 19138520d5 | |||
| 1a73712cca | |||
| f8adc1dec6 | |||
| 9c1331e636 | |||
| 1c2b23c5a0 | |||
| 38532d12be | |||
| e553d9ba68 | |||
| 9ce20b78cf | |||
| 1017497d28 | |||
| e1dcecb4e9 | |||
| b0e009baae | |||
| 35ed94c296 | |||
| 890c165625 | |||
| 6adccdb848 | |||
| 2af7c0fd0a | |||
| 401ff9284a | |||
| 02441f063b | |||
| 1fbce0b6ae | |||
| b34b5379f4 | |||
| 92ca4693f2 | |||
| b42ab23939 | |||
| 39501fe69b |
@@ -4,9 +4,9 @@ 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 { Public_Sans } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,13 +20,11 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -37,8 +35,8 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
<body className={`${roboto.variable} antialiased`}>
|
||||
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
|
||||
@@ -2,29 +2,29 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import { Phone, Wrench, Brush, Hammer, Zap, Sparkles } from "lucide-react";
|
||||
import { Wrench, Brush, Hammer, Zap, Sparkles } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="large"
|
||||
background="noise"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="light"
|
||||
background="none"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
@@ -48,7 +48,7 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
variant: "sparkles-gradient"}}
|
||||
title="J&R AUTO BODY"
|
||||
description="Precision Repairs. Street-Level Speed. Get your performance car back on the road with the elite care it deserves at Lafayette's premier auto body shop."
|
||||
buttons={[
|
||||
@@ -89,7 +89,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentySix
|
||||
textboxLayout="split"
|
||||
textboxLayout="inline-image"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
@@ -171,27 +171,20 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
animationType="slide-up"
|
||||
<ContactText
|
||||
text="Questions? Get in touch with our team for expert advice and scheduling your repair."
|
||||
background={{
|
||||
variant: "sparkles-gradient"}}
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1", title: "Business Hours", content: "Open Monday-Friday, 9:00 AM - 6:00 PM."},
|
||||
{
|
||||
id: "f2", title: "Where are you located?", content: "2300 Concord Rd, Lafayette, IN 47905."},
|
||||
{
|
||||
id: "f3", title: "Do you offer free quotes?", content: "Yes, come by for a free, transparent estimate."},
|
||||
buttons={[
|
||||
{ text: "Get Your Free Estimate", href: "tel:7652010460" },
|
||||
{ text: "Visit 2300 Concord Rd", href: "https://maps.app.goo.gl/" }
|
||||
]}
|
||||
ctaTitle="Ready for a repair?"
|
||||
ctaDescription="Get your quote today at 2300 Concord Rd, Lafayette, IN."
|
||||
ctaButton={{
|
||||
text: "Call Now", href: "tel:7652010460"}}
|
||||
ctaIcon={Phone}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterBase
|
||||
logoText="J&R Auto Body"
|
||||
columns={[
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), 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-public-sans), sans-serif;
|
||||
font-family: var(--font-roboto), sans-serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #e63946;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #106efb;
|
||||
--background: #010912;
|
||||
--card: #152840;
|
||||
--foreground: #f8fbff;
|
||||
--primary-cta: #dfe6ed;
|
||||
--primary-cta-text: #010912;
|
||||
--secondary-cta: #0e1a29;
|
||||
--secondary-cta-text: #ffffff;
|
||||
--accent: #333333;
|
||||
--background-accent: #0d1a29;
|
||||
--accent: #a7afb7;
|
||||
--background-accent: #004a93;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user