diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..b6cfe3c --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,211 @@ +"use client"; + +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import TeamCardTen from '@/components/sections/team/TeamCardTen'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import { Target, Zap, Award, MessageSquare, Twitter, Linkedin, Github, Shield } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/analysis/page.tsx b/src/app/analysis/page.tsx new file mode 100644 index 0000000..9c3098e --- /dev/null +++ b/src/app/analysis/page.tsx @@ -0,0 +1,177 @@ +"use client"; + +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import { Zap, Target, Award, MessageSquare, Twitter, Linkedin, Github, BarChart3 } from 'lucide-react'; + +export default function AnalysisPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx new file mode 100644 index 0000000..8146b94 --- /dev/null +++ b/src/app/login/page.tsx @@ -0,0 +1,83 @@ +"use client"; + +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import { Shield, Twitter, Linkedin, Github } from 'lucide-react'; + +export default function LoginPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index e66be91..9d81c13 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,23 +15,23 @@ import { Sparkles, Zap, Target, Award, MessageSquare, Twitter, Linkedin, Github, export default function LandingPage() { return (