diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 852a0cb..dbcc15c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,61 +1,22 @@
import type { Metadata } from "next";
-import { Source_Sans_3 } from "next/font/google";
+import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3",
- subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "InvestTech Capital | Software Investment Fund",
- description: "Strategic software investment fund managing $2.8B+ AUM. We partner with high-potential software companies in AI, SaaS, Fintech, and Developer Tools for exponential growth.",
- keywords: "software investment, venture capital, AI investment, SaaS funding, fintech investment, venture fund",
- metadataBase: new URL("https://investtech.com"),
- alternates: {
- canonical: "https://investtech.com",
- },
- openGraph: {
- title: "InvestTech Capital | Software Investment Fund",
- description: "Strategic software investment fund managing $2.8B+ AUM. Partner with us for growth capital and expertise.",
- url: "https://investtech.com",
- siteName: "InvestTech Capital",
- type: "website",
- images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-modern-software-dashboard-interface-wi-1772553611162-73b27e4b.png",
- alt: "A modern software dashboard interface with multiple analytical panels, charts, and real-time data vi",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "InvestTech Capital | Software Investment Fund",
- description: "Strategic software investment fund managing $2.8B+ AUM in transformative technology companies.",
- images: [
- "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-modern-software-dashboard-interface-wi-1772553611162-73b27e4b.png",
- ],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "InvestTech Capital", description: "Software investment opportunities that scale"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8eac567..354d36e 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -231,4 +231,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx
index 7bcae4f..1f3b8f5 100644
--- a/src/app/portfolio/page.tsx
+++ b/src/app/portfolio/page.tsx
@@ -3,11 +3,12 @@
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
+import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
-import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
-import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
+import BlogCardTwo from "@/components/sections/blog/BlogCardTwo";
+import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
-import { Award, TrendingUp, Sparkles, CheckCircle, Zap } from "lucide-react";
+import { TrendingUp, CheckCircle, Award } from "lucide-react";
export default function PortfolioPage() {
const navItems = [
@@ -71,60 +72,92 @@ export default function PortfolioPage() {
/>
-
+
+
+
+
+
-
-
+
-
-
+
@@ -137,4 +170,4 @@ export default function PortfolioPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx
new file mode 100644
index 0000000..621dcad
--- /dev/null
+++ b/src/app/privacy/page.tsx
@@ -0,0 +1,186 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
+import LegalSection from "@/components/legal/LegalSection";
+import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+
+export default function PrivacyPage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Investment Strategy", id: "/investment-strategy" },
+ { name: "Portfolio", id: "/portfolio" },
+ { name: "About Us", id: "/about" },
+ { name: "Contact", id: "/contact" },
+ { name: "Privacy Policy", id: "/privacy" },
+ { name: "Terms of Service", id: "/terms" },
+ ];
+
+ const footerColumns = [
+ {
+ items: [
+ { label: "Home", href: "/" },
+ { label: "Investment Strategy", href: "/investment-strategy" },
+ { label: "Portfolio", href: "/portfolio" },
+ ],
+ },
+ {
+ items: [
+ { label: "About Us", href: "/about" },
+ { label: "Team", href: "/about" },
+ { label: "Contact", href: "/contact" },
+ ],
+ },
+ {
+ items: [
+ { label: "LinkedIn", href: "https://linkedin.com" },
+ { label: "Twitter", href: "https://twitter.com" },
+ { label: "Crunchbase", href: "https://crunchbase.com" },
+ ],
+ },
+ {
+ items: [
+ { label: "Privacy Policy", href: "/privacy" },
+ { label: "Terms of Service", href: "/terms" },
+ { label: "Compliance", href: "/compliance" },
+ ],
+ },
+ ];
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index bf4bf8b..903736c 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
- /* --background: #ffffff;;
- --card: #f9f9f9;;
- --foreground: #120006e6;;
- --primary-cta: #e63946;;
- --secondary-cta: #f9f9f9;;
- --accent: #e2e2e2;;
- --background-accent: #e2e2e2;; */
+ /* --background: #000000;;
+ --card: #1a1a1a;;
+ --foreground: #e6ffe6;;
+ --primary-cta: #80da9b;;
+ --secondary-cta: #07170b;;
+ --accent: #38714a;;
+ --background-accent: #2c6541;; */
- --background: #ffffff;;
- --card: #f9f9f9;;
- --foreground: #120006e6;;
- --primary-cta: #e63946;;
+ --background: #000000;;
+ --card: #1a1a1a;;
+ --foreground: #e6ffe6;;
+ --primary-cta: #80da9b;;
--primary-cta-text: #ffffff;;
- --secondary-cta: #f9f9f9;;
+ --secondary-cta: #07170b;;
--secondary-cta-text: #120006e6;;
- --accent: #e2e2e2;;
- --background-accent: #e2e2e2;;
+ --accent: #38714a;;
+ --background-accent: #2c6541;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx
new file mode 100644
index 0000000..2c7903d
--- /dev/null
+++ b/src/app/terms/page.tsx
@@ -0,0 +1,200 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
+import LegalSection from "@/components/legal/LegalSection";
+import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+
+export default function TermsPage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Investment Strategy", id: "/investment-strategy" },
+ { name: "Portfolio", id: "/portfolio" },
+ { name: "About Us", id: "/about" },
+ { name: "Contact", id: "/contact" },
+ { name: "Privacy Policy", id: "/privacy" },
+ { name: "Terms of Service", id: "/terms" },
+ ];
+
+ const footerColumns = [
+ {
+ items: [
+ { label: "Home", href: "/" },
+ { label: "Investment Strategy", href: "/investment-strategy" },
+ { label: "Portfolio", href: "/portfolio" },
+ ],
+ },
+ {
+ items: [
+ { label: "About Us", href: "/about" },
+ { label: "Team", href: "/about" },
+ { label: "Contact", href: "/contact" },
+ ],
+ },
+ {
+ items: [
+ { label: "LinkedIn", href: "https://linkedin.com" },
+ { label: "Twitter", href: "https://twitter.com" },
+ { label: "Crunchbase", href: "https://crunchbase.com" },
+ ],
+ },
+ {
+ items: [
+ { label: "Privacy Policy", href: "/privacy" },
+ { label: "Terms of Service", href: "/terms" },
+ { label: "Compliance", href: "/compliance" },
+ ],
+ },
+ ];
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}