6 Commits

Author SHA1 Message Date
6352309040 Update src/app/layout.tsx 2025-12-29 22:12:24 +00:00
44a2d67f3d Update src/app/globals.css 2025-12-29 22:12:23 +00:00
0d67b4d77a Update src/app/page.tsx 2025-12-29 22:04:11 +00:00
3b9bf87993 Update src/app/page.tsx 2025-12-29 21:54:47 +00:00
ffb22890d2 Update src/app/page.tsx 2025-12-29 21:45:59 +00:00
5046211bac Update src/app/globals.css 2025-12-29 21:45:58 +00:00
3 changed files with 14 additions and 14 deletions

View File

@@ -7,7 +7,7 @@
--background: #ffffff;; --background: #ffffff;;
--card: #fafafa;; --card: #fafafa;;
--foreground: #000000;; --foreground: #000000;;
--primary-cta: #00cc00;; --primary-cta: #0066ff;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #e5e5e5;; --accent: #e5e5e5;;
--background-accent: #f5f5f5;; --background-accent: #f5f5f5;;
@@ -495,7 +495,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-lora), 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;
@@ -508,5 +508,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-lora), sans-serif; font-family: var(--font-inter), sans-serif;
} }

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Lora } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const lora = Lora({ const inter = Inter({
variable: "--font-lora", variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -44,7 +44,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={lora.variable} className={inter.variable}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
title="Capital for Innovation" title="Capital for Innovation"
description="We identify and fund the next generation of transformative companies. Strategic capital, hands-on expertise, and a network of industry leaders." description="We identify and fund the next generation of transformative companies. Strategic capital, hands-on expertise, and a network of industry leaders."
tag="Venture Capital" tag="Venture Capital"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767044703466-m4tbn51j.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767045280682-cq1jxn74.jpg"
imageAlt="Venture capital team in meeting" imageAlt="Venture capital team in meeting"
buttons={[ buttons={[
{ text: "View Portfolio", href: "portfolio" }, { text: "View Portfolio", href: "portfolio" },
@@ -82,21 +82,21 @@ export default function LandingPage() {
id: "1", id: "1",
name: "ClimateFlow", name: "ClimateFlow",
price: "Series B", price: "Series B",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767043239120-nvo76k90.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767045810718-px7f0did.jpg",
imageAlt: "ClimateFlow investment" imageAlt: "ClimateFlow investment"
}, },
{ {
id: "2", id: "2",
name: "FinCore AI", name: "FinCore AI",
price: "Series A", price: "Series A",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767043239120-nvo76k90.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767045810718-px7f0did.jpg",
imageAlt: "FinCore AI investment" imageAlt: "FinCore AI investment"
}, },
{ {
id: "3", id: "3",
name: "BioScale", name: "BioScale",
price: "Series B", price: "Series B",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767043239120-nvo76k90.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767045810718-px7f0did.jpg",
imageAlt: "BioScale investment" imageAlt: "BioScale investment"
} }
]} ]}
@@ -110,7 +110,7 @@ export default function LandingPage() {
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardEight <MetricCardEight
title="Proven track record of delivering exceptional returns and building category leaders" title="Proven track record of delivering exceptional returns and building category leaders"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767043239120-nvo76k90.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767045843364-dsl3ehhb.jpg"
imageAlt="Investment growth chart" imageAlt="Investment growth chart"
metrics={[ metrics={[
{ id: "1", value: "$850M+", title: "Assets Under Management" }, { id: "1", value: "$850M+", title: "Assets Under Management" },
@@ -130,7 +130,7 @@ export default function LandingPage() {
{ {
id: "1", id: "1",
name: "Sarah Chen", name: "Sarah Chen",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766140101670-ttp7xdlv.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767045843822-th04bajv.jpg",
imageAlt: "Sarah Chen" imageAlt: "Sarah Chen"
}, },
{ {
@@ -142,7 +142,7 @@ export default function LandingPage() {
{ {
id: "3", id: "3",
name: "David Patel", name: "David Patel",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766735981305-ohmchoon.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767045843571-6vu2tgtk.jpg",
imageAlt: "David Patel" imageAlt: "David Patel"
} }
]} ]}