diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 65c2df5..85f5e5b 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -1,10 +1,10 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import Link from "next/link";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import MediaAbout from "@/components/sections/about/MediaAbout";
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
+import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Linkedin, Twitter, Mail } from "lucide-react";
@@ -17,7 +17,7 @@ export default function AboutPage() {
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSmall"
- background="aurora"
+ background="circleGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
@@ -30,85 +30,93 @@ export default function AboutPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Investmentslösungen", id: "solutions" },
- { name: "Aktien Strategien", id: "aktien" },
- { name: "Krypto Strategien", id: "crypto" },
- { name: "Research", id: "/research" },
+ { name: "Aktien Strategien", id: "/aktien-strategies" },
+ { name: "Krypto Strategien", id: "/crypto-strategies" },
+ { name: "Research", id: "research" },
{ name: "Über uns", id: "/about" },
]}
- button={{
- text: "Strategiegespräch buchen",
- href: "contact",
- }}
+ button={{ text: "Strategiegespräch buchen", href: "/contact" }}
/>
- {/* About Hero */}
-
+ {/* About Hero Section */}
+
- {/* Core Values */}
+ {/* Team & Values */}
- {/* About CTA */}
-
+ {/* Team Testimonials */}
+
+
+
+
+ {/* CTA Section */}
+
console.log(data)}
/>
@@ -126,4 +134,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/aktien-strategies/page.tsx b/src/app/aktien-strategies/page.tsx
index f80e8db..ee42eab 100644
--- a/src/app/aktien-strategies/page.tsx
+++ b/src/app/aktien-strategies/page.tsx
@@ -6,7 +6,7 @@ import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import FooterCard from "@/components/sections/footer/FooterCard";
-import { Linkedin, Twitter, Mail } from "lucide-react";
+import { TrendingUp, Linkedin, Twitter, Mail } from "lucide-react";
export default function AktienStrategiesPage() {
return (
@@ -16,7 +16,7 @@ export default function AktienStrategiesPage() {
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSmall"
- background="aurora"
+ background="circleGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
@@ -41,84 +41,57 @@ export default function AktienStrategiesPage() {
{/* Hero Section */}
- {/* Trust Section - Why Alpha for Equities */}
+ {/* Trust Section - Why Alpha for Stocks */}
- {/* Solutions Section - Equity Products */}
+ {/* Solutions Section - Stock Products */}
@@ -138,4 +111,4 @@ export default function AktienStrategiesPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index b1b780b..0de909f 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -5,18 +5,8 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Linkedin, Twitter, Mail } from "lucide-react";
-import Link from "next/link";
export default function ContactPage() {
- const navItems = [
- { name: "Home", id: "/" },
- { name: "Investmentslösungen", id: "/solutions" },
- { name: "Aktien Strategien", id: "/aktien" },
- { name: "Krypto Strategien", id: "/crypto" },
- { name: "Research", id: "/research" },
- { name: "Über uns", id: "/about" },
- ];
-
return (
+ {/* Navbar */}
({
- name: item.name,
- id: item.id,
- }))}
- button={{
- text: "Strategiegespräch buchen",
- href: "/contact",
- }}
+ navItems={[
+ { name: "Home", id: "/" },
+ { name: "Investmentslösungen", id: "solutions" },
+ { name: "Aktien Strategien", id: "/aktien-strategies" },
+ { name: "Krypto Strategien", id: "/crypto-strategies" },
+ { name: "Research", id: "research" },
+ { name: "Über uns", id: "/about" },
+ ]}
+ button={{ text: "Strategiegespräch buchen", href: "/contact" }}
/>
+ {/* Contact Form Section */}
console.log("Form submitted:", data)}
+ buttonText="Nachricht senden"
+ onSubmit={(data) => console.log(data)}
/>
+ {/* Footer */}
);
-}
\ No newline at end of file
+}
diff --git a/src/app/crypto-strategies/page.tsx b/src/app/crypto-strategies/page.tsx
index 87e168a..7b8eecd 100644
--- a/src/app/crypto-strategies/page.tsx
+++ b/src/app/crypto-strategies/page.tsx
@@ -6,7 +6,7 @@ import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import FooterCard from "@/components/sections/footer/FooterCard";
-import { Linkedin, Twitter, Mail } from "lucide-react";
+import { Zap, Linkedin, Twitter, Mail } from "lucide-react";
export default function CryptoStrategiesPage() {
return (
@@ -16,7 +16,7 @@ export default function CryptoStrategiesPage() {
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSmall"
- background="aurora"
+ background="circleGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
@@ -44,8 +44,8 @@ export default function CryptoStrategiesPage() {
title="Strategisches Investieren in Kryptowährungen"
description="Alpha Asset Management hilft anspruchsvollen Investoren, in digitale Assets zu investieren. Mit institutionellem Fokus auf Bitcoin, Ethereum und ausgewählte Altcoins mit starkem Fundamentals."
tag="Digitale Assets Expertise"
- tagIcon="Sparkles"
- background={{ variant: "aurora" }}
+ tagIcon={Zap}
+ background={{ variant: "canvas-reveal" }}
buttons={[
{ text: "Crypto Portfolio konsultieren", href: "/contact" },
{ text: "Strategiegespräch buchen", href: "/contact" },
@@ -111,4 +111,4 @@ export default function CryptoStrategiesPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/investment-solutions/page.tsx b/src/app/investment-solutions/page.tsx
index 9c676da..b085e0b 100644
--- a/src/app/investment-solutions/page.tsx
+++ b/src/app/investment-solutions/page.tsx
@@ -1,10 +1,9 @@
"use client";
-import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
-import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
+import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Linkedin, Twitter, Mail } from "lucide-react";
@@ -17,158 +16,111 @@ export default function InvestmentSolutionsPage() {
borderRadius="soft"
contentWidth="mediumLarge"
sizing="largeSmall"
- background="aurora"
+ background="circleGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
+ {/* Navbar */}
+ {/* Solutions Overview */}
-
-
+
-
+ {/* CTA Section */}
+
console.log(data)}
/>
+ {/* Footer */}
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c10d9cf..cade082 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1442 +1,17 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Poppins } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-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"],
-});
+import "./styles/globals.css";
export const metadata: Metadata = {
- title: "Alpha Asset Management | Premium Investment Strategien",
- description: "Institutionelle Investmentlösungen in Aktien und Kryptowährungen. Alpha Asset Management kombiniert traditionelle Finanzexpertise mit modernen digitalen Assets.",
- keywords: "Investment, Portfolio Management, Aktien, Kryptowährungen, Hedge Fund, Vermögensaufbau",
- metadataBase: new URL("https://alpha-assets.de"),
- alternates: {
- canonical: "https://alpha-assets.de",
- },
- openGraph: {
- title: "Alpha Asset Management | Premium Investment Strategien",
- description: "Strategisches Investieren in Aktien und Kryptowährungen mit institutioneller Expertise.",
- url: "https://alpha-assets.de",
- siteName: "Alpha Asset Management",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-vector/premium-abstract-golden-lines-dark-background-design_1017-55324.jpg",
- alt: "Alpha Asset Management Premium Investment Platform",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Alpha Asset Management | Investmentlösungen",
- description: "Professionelle Vermögensaufbau durch strategisches Investieren in Aktien und digitale Assets.",
- images: ["http://img.b2bpic.net/free-vector/premium-abstract-golden-lines-dark-background-design_1017-55324.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Alpha Asset Management | Professionelle Investmentlösungen", description: "Alpha Asset Management bietet institutionelle Investmentlösungen für Aktien und Kryptowährungen. Strategisches Vermögensmanagement für anspruchsvolle Investoren."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
-