Compare commits
45 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a1ee6188b | |||
| ad8efa99ca | |||
| 5bc910ee11 | |||
| ceea46c2d5 | |||
| 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}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
import HeroSignup from '@/components/sections/hero/HeroSignup';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
@@ -42,38 +42,15 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
<HeroSignup
|
||||
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={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-clean-investment-dashboard-inte-1771523628087-25082175.png?_wi=1", imageAlt: "Investment dashboard interface"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/abstract-representation-of-ai-powered-fi-1771523635581-19300fba.png", imageAlt: "AI analysis visualization"
|
||||
},
|
||||
{
|
||||
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/professional-business-team-in-modern-off-1771523657572-9038b5d6.png", imageAlt: "Investment team collaboration"
|
||||
},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-clean-investment-dashboard-inte-1771523628087-25082175.png?_wi=2", imageAlt: "Portfolio management dashboard"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Start Investing", href: "pricing" },
|
||||
{ text: "Book a Demo", href: "contact" }
|
||||
]}
|
||||
tagAnimation="blur-reveal"
|
||||
buttonAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Get Early Access"
|
||||
onSubmit={(email) => console.log('Email:', email)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -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