diff --git a/src/app/page.tsx b/src/app/page.tsx index 8afcc67..326d37d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,6 @@ import HeroOverlay from "@/components/sections/hero/HeroOverlay"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; -import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import ContactCTA from "@/components/sections/contact/ContactCTA"; diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx new file mode 100644 index 0000000..9674b98 --- /dev/null +++ b/src/app/profile/page.tsx @@ -0,0 +1,36 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import React from "react"; + +export default function ProfilePage() { + return ( + + +
+

User Profile

+
+

Credentials & Authentication

+
+
+ + +
+
+ + +
+ +
+
+
+
+ ); +} \ No newline at end of file