Compare commits
42 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5bc910ee11 | |||
| 8adb16d63f | |||
| d19ba23f01 | |||
| 64b0363a57 | |||
| 8ce318426e | |||
| 04ed101fc8 | |||
| 84cc2df732 | |||
| 4f34370f7d | |||
| 728657e8aa | |||
| a4370d23ab | |||
| 56fb0c67b0 | |||
| d18e9610a2 | |||
| 8494b47163 | |||
| a088061b89 | |||
| 298e08ca43 | |||
| 766dc8d948 | |||
| 661dcc32c1 | |||
| 3bad23d832 | |||
| a16d5ed4ac | |||
| 297c014763 | |||
| c96975911f | |||
| 6bddfaca9c | |||
| d3e7cca9b7 | |||
| 0ff54b19e1 | |||
| 2681b0abe3 | |||
| 669c452887 | |||
| 5ca86adf83 | |||
| 4108c4daa8 | |||
| 1ac14b6814 | |||
| 6f205dfd5b | |||
| 1f5eb7560a | |||
| 2bd0b7b74c | |||
| a6e540a069 | |||
| 50f0f3daa1 | |||
| 56bf3ce2a3 | |||
| 5f97e0ab82 | |||
| 31281c52f2 | |||
| 8dae594d76 | |||
| ca60f1ca2c | |||
| e954485376 | |||
| 87396f0d0e | |||
| 2f32bcda28 |
@@ -28,7 +28,6 @@ export default function BlogPage() {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
|
||||
@@ -4,8 +4,6 @@ import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Work_Sans } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||
@@ -25,15 +23,6 @@ export const metadata: Metadata = {
|
||||
}
|
||||
};
|
||||
|
||||
const workSans = Work_Sans({
|
||||
variable: "--font-work-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -42,7 +31,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${workSans.variable} ${sourceSans3.variable} antialiased`}>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ export default function LandingPage() {
|
||||
<HeroBillboardCarousel
|
||||
title="Intelligent Capital Allocation for the Modern Investor"
|
||||
description="Harness AI-driven insights and real-time analytics to discover high-growth tech opportunities. Our platform empowers investors with institutional-grade tools and market intelligence."
|
||||
tag="AI-Powered Investment"
|
||||
tag="AI-Powered TECH"
|
||||
tagIcon={Zap}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
mediaItems={[
|
||||
@@ -59,7 +59,7 @@ export default function LandingPage() {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/modern-cybersecurity-visualization-featu-1771523648669-f3cbc54a.png", imageAlt: "Security infrastructure"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/real-time-market-data-visualization-show-1771523642014-e6dd0793.png", imageAlt: "Real-time market data"
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/tmp/tech-1771573591276-60e72ecc.png", imageAlt: "Real-time market data"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/professional-business-team-in-modern-off-1771523657572-9038b5d6.png", imageAlt: "Investment team collaboration"
|
||||
|
||||
@@ -85,13 +85,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
@@ -125,13 +123,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
@@ -172,13 +168,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
|
||||
@@ -35,13 +35,11 @@ export default function ShopPage() {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
@@ -73,13 +71,11 @@ export default function ShopPage() {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
|
||||
Reference in New Issue
Block a user