From 423c56037f1d795a772e107d1ab48503b6373877 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 29 Dec 2025 11:12:59 +0000 Subject: [PATCH 1/3] Update src/app/globals.css --- src/app/globals.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 50e697e..e43038f 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #ffffff;; - --card: #fcfcfc;; - --foreground: #120a00e6;; - --primary-cta: #ff8c42;; - --secondary-cta: #ffffff;; - --accent: #e2e2e2;; - --background-accent: #c4c4c4;; + --background: #000000;; + --card: #1a1a1a;; + --foreground: #ffffff;; + --primary-cta: #ffdd00;; + --secondary-cta: #1a1a1a;; + --accent: #ffdd00;; + --background-accent: #333333;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); @@ -495,7 +495,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-dm-sans), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-dm-sans), sans-serif; + font-family: var(--font-inter), sans-serif; } \ No newline at end of file From 8b4fb65714b59166931ba922824f76e2eb1402e0 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 29 Dec 2025 11:13:00 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 14391f1..c9d7d9e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; +import { Inter, Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); +const poppins = Poppins({ + variable: "--font-poppins", + subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); + export const metadata: Metadata = { title: "Disruptive Fund - Israeli VC Investing in Innovation", description: "Israeli venture capital fund backing breakthrough startups. We invest in deep tech, SaaS, and fintech innovations from Israel and the region.", @@ -43,7 +49,7 @@ export default function RootLayout({ {children} From 377d66dda52fb6bc31c6581773e3b417535f3f0b Mon Sep 17 00:00:00 2001 From: development Date: Mon, 29 Dec 2025 11:13:00 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f2bcbaf..4729456 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';