Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a4aa101084 | |||
| 52b2f26507 | |||
| 504acffe39 | |||
| ce1027ba51 | |||
| 2a715d7bce | |||
| eb28a5ed72 |
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -21,8 +22,13 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
@@ -34,7 +40,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -53,7 +53,7 @@ export default function LandingPage() {
|
||||
{
|
||||
text: "Book Appointment", href: "#booking"},
|
||||
{
|
||||
text: "Call Now", href: "tel:+12163311477"},
|
||||
text: "Call Now", onClick: () => alert("+12163311477")},
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
@@ -207,7 +207,7 @@ export default function LandingPage() {
|
||||
{
|
||||
text: "Book Appointment", href: "#"},
|
||||
{
|
||||
text: "Call Now", href: "tel:+12163311477"},
|
||||
text: "Call Now", onClick: () => alert("+12163311477")},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-mulish), 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-mulish), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user