Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d839364b3 | |||
| 51d7d33262 | |||
| f9d56f2536 | |||
| 4172e59325 | |||
| c15d7972af | |||
| a3b5d984b9 | |||
| cd638f3566 | |||
| 44f5055d15 | |||
| 2acad4978d | |||
| 473cc7b420 | |||
| 89bb332661 | |||
| 4d16a94d58 | |||
| 88227a93df | |||
| 0a37c30f76 |
@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,8 +22,15 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -33,7 +42,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${openSans.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -10,7 +10,8 @@ import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import { MessageCircle } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -106,21 +107,17 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah J.", role: "Realtor", company: "Elite Homes", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-recording-their-house-tour_23-2151139097.jpg" },
|
||||
{ id: "2", name: "Michael T.", role: "Business Owner", company: "Tech Labs", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-confident-young-man-with-his-crossed-arms-looking-camera_23-2148130362.jpg" },
|
||||
{ id: "3", name: "Emily R.", role: "Legal Clerk", company: "Law Partners", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/real-estate-insurance-concept-cheerful-man-buying-property-celebrating-saying-yes-showin_1258-144784.jpg" },
|
||||
{ id: "4", name: "David K.", role: "Homeowner", company: "Individual", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg" },
|
||||
{ id: "5", name: "Jessica L.", role: "Contractor", company: "BuildRight", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-business-woman-making-plans_23-2148356256.jpg" },
|
||||
{ id: "6", name: "Robert B.", role: "Manager", company: "City Transit", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg" }
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Proven reliability for our local community."
|
||||
description="Hear from satisfied clients we have helped."
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah J.", role: "Realtor", testimonial: "Nelly was incredible—professional, prompt, and made the whole process seamless.", icon: MessageCircle },
|
||||
{ id: "2", name: "Michael T.", role: "Business Owner", testimonial: "Fast same-day service for my business contracts. Highly recommend!", icon: MessageCircle },
|
||||
{ id: "3", name: "Emily R.", role: "Legal Clerk", testimonial: "Expert attention to detail. Every document was handled perfectly.", icon: MessageCircle }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -143,8 +140,8 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get in touch"
|
||||
title="Ready to Notarize?"
|
||||
description="Send a request for a same-day appointment and our team will get back to you immediately."
|
||||
title="Schedule Your Same-Day Appointment"
|
||||
description="Book your spot today and ensure your documents are authenticated without delay."
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-executive-signing-agreement_1098-2041.jpg"
|
||||
/>
|
||||
@@ -160,4 +157,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #106EFB;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #106EFB;
|
||||
--background: #f5f5f5;
|
||||
--card: #ffffff;
|
||||
--foreground: #1c1c1c;
|
||||
--primary-cta: #1c1c1c;
|
||||
--primary-cta-text: #f5f5f5;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #1c1c1c;
|
||||
--accent: #e63946;
|
||||
--background-accent: #e8bea8;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user