7 Commits

Author SHA1 Message Date
5a63fa8193 Update theme colors 2026-04-19 15:12:57 +00:00
984a0a2a99 Update theme fonts 2026-04-19 15:12:36 +00:00
d8ef2f936b Update theme fonts 2026-04-19 15:12:35 +00:00
0e36211c8e Update theme fonts 2026-04-19 15:12:13 +00:00
e97bdde033 Update theme fonts 2026-04-19 15:12:13 +00:00
fc90cad803 Update src/app/page.tsx 2026-04-19 15:03:02 +00:00
1fa4c841e2 Update theme colors 2026-04-19 15:02:05 +00:00
4 changed files with 20 additions and 15 deletions

View File

@@ -7,6 +7,8 @@ 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 { Open_Sans } from "next/font/google";
import { Lato } from "next/font/google";
@@ -20,9 +22,12 @@ export const metadata: Metadata = {
},
};
const publicSans = Public_Sans({
variable: "--font-public-sans",
const lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export default function RootLayout({
@@ -33,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<body className={`${lato.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -111,7 +111,7 @@ export default function LandingPage() {
useInvertedBackground={true}
plans={[
{
id: "p1", badge: "Başlangıç", price: "1.500 TL", subtitle: "Temel Beslenme Danışmanlığı", features: [
id: "p1", badge: "Başlangıç", price: "2.500 TL", subtitle: "Temel Beslenme Danışmanlığı", features: [
"1 Seans", "Vücut Analizi", "Kişisel Plan"],
},
{

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-public-sans), sans-serif;
font-family: var(--font-lato), 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-lato), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #f5f5f5;
--primary-cta: #ffdf7d;
--primary-cta-text: #0a0a0a;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #ffffff;
--accent: #b8860b;
--background-accent: #8b6914;
--background: #fffafa;
--card: #fff7f7;
--foreground: #1a0000;
--primary-cta: #e63946;
--primary-cta-text: #fffafa;
--secondary-cta: #ffffff;
--secondary-cta-text: #1a0000;
--accent: #f5c4c7;
--background-accent: #f09199;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);