6 Commits

Author SHA1 Message Date
01ec3964bf Update theme fonts 2026-05-06 16:49:38 +00:00
66a1bdd694 Update theme fonts 2026-05-06 16:49:38 +00:00
33aeec11f1 Update theme fonts 2026-05-06 16:49:28 +00:00
be44158f94 Update theme fonts 2026-05-06 16:49:28 +00:00
34d311b880 Update src/app/page.tsx 2026-05-06 16:46:32 +00:00
1740bee54b Merge version_2 into main
Merge version_2 into main
2026-05-06 16:44:53 +00:00
3 changed files with 37 additions and 29 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Figtree } from "next/font/google"; import { Figtree } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -15,8 +17,14 @@ export const metadata: Metadata = {
description: "Generated by create next app", description: "Generated by create next app",
}; };
const figtree = Figtree({
variable: "--font-figtree",
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -28,7 +36,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${figtree.variable} antialiased`}> <body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -88,6 +88,30 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="why-us" data-section="why-us">
<MetricCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
metrics={[
{
id: "m1", icon: Award,
title: "Experienced Dentists", value: "15+ Years"},
{
id: "m2", icon: Shield,
title: "Pain-Free Guarantee", value: "100%"},
{
id: "m3", icon: Zap,
title: "Same-Day Appointments", value: "Available"},
{
id: "m4", icon: Smile,
title: "Satisfied Patients", value: "5000+"},
]}
title="Why SmileCraft?"
description="Dedication to excellence, precision, and care."
/>
</div>
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureCardOne <FeatureCardOne
animationType="slide-up" animationType="slide-up"
@@ -113,30 +137,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="why-us" data-section="why-us">
<MetricCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
metrics={[
{
id: "m1", icon: Award,
title: "Experienced Dentists", value: "15+ Years"},
{
id: "m2", icon: Shield,
title: "Pain-Free Guarantee", value: "100%"},
{
id: "m3", icon: Zap,
title: "Same-Day Appointments", value: "Available"},
{
id: "m4", icon: Smile,
title: "Satisfied Patients", value: "5000+"},
]}
title="Why SmileCraft?"
description="Dedication to excellence, precision, and care."
/>
</div>
<div id="team" data-section="team"> <div id="team" data-section="team">
<TeamCardFive <TeamCardFive
animationType="slide-up" animationType="slide-up"

View File

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