Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 43d07d448a | |||
| c4f20faba5 | |||
| db9d0a41e0 | |||
| cbff6ab7be | |||
| 133b4be6fa | |||
| 8b07c94d0d | |||
| 4c1d0af49f | |||
| ce1b1c8f6a | |||
| 857c4bd89a | |||
| 3f82137880 | |||
| d7cb05b7da | |||
| e4ca9517a1 | |||
| 43fd7b82eb | |||
| 87a6f62a08 | |||
| 0a38eb4635 | |||
| aba2a8825e | |||
| 6ff4135974 |
@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,10 +23,17 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
|
||||
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -34,7 +44,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -52,6 +52,7 @@ export default function LandingPage() {
|
||||
buttons={[{ text: "Agendar via WhatsApp", href: "https://wa.me/5511989013767" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-woman-sitting-chair_23-2149697972.jpg?_wi=2"
|
||||
avatarText="Mais de 500 pacientes transformadas"
|
||||
testimonialRatingClassName="text-yellow-500"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -94,6 +95,7 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
ratingClassName="text-yellow-500"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-poppins), 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-poppins), sans-serif;
|
||||
font-family: var(--font-libre-baskerville), serif;
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #fdf2f8;
|
||||
--card: #ffffff;
|
||||
--foreground: #4c0519;
|
||||
--primary-cta: #db2777;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000f06e6;
|
||||
--primary-cta: #0a7039;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #fce7f3;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #fbcfe8;
|
||||
--background-accent: #f9a8d4;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000f06e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user