diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx
new file mode 100644
index 0000000..981b02f
--- /dev/null
+++ b/src/app/login/page.tsx
@@ -0,0 +1,47 @@
+"use client";
+
+import { useState } from "react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import FooterCard from '@/components/sections/footer/FooterCard';
+
+export default function LoginPage() {
+ const [email, setEmail] = useState("");
+ const [password, setPassword] = useState("");
+
+ return (
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8cfba33..7f02bf4 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -12,6 +12,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
+import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow';
export default function LandingPage() {
return (
@@ -32,21 +33,15 @@ export default function LandingPage() {
@@ -55,97 +50,54 @@ export default function LandingPage() {
@@ -155,10 +107,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Your Financial Control Center"
description={[
- "Replace complex Excel files with an intuitive dashboard.",
- "AI-driven tax calculations tailored to your side income.",
- "Clear visualization of your net worth and progress.",
- ]}
+ "Replace complex Excel files with an intuitive dashboard.", "AI-driven tax calculations tailored to your side income.", "Clear visualization of your net worth and progress."]}
/>
@@ -168,32 +117,40 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
- tag: "Automated",
- title: "Tax Advisor AI",
- subtitle: "Always accurate",
- description: "Calculate taxes on additional income automatically.",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=v6o3n5",
- },
+ tag: "Automated", title: "Tax Advisor AI", subtitle: "Always accurate", description: "Calculate taxes on additional income automatically.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=v6o3n5"},
{
- tag: "Wealth",
- title: "Net Worth Tracking",
- subtitle: "Visual growth",
- description: "Real-time updates on your assets and liabilities.",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3xo6kp",
- },
+ tag: "Wealth", title: "Net Worth Tracking", subtitle: "Visual growth", description: "Real-time updates on your assets and liabilities.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3xo6kp"},
{
- tag: "Productivity",
- title: "Weekly Goal Planner",
- subtitle: "Stay on track",
- description: "Set and monitor up to 5 habits per week.",
- imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yv6arb",
- },
+ tag: "Productivity", title: "Weekly Goal Planner", subtitle: "Stay on track", description: "Set and monitor up to 5 habits per week.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yv6arb"},
]}
title="Smart Features for Growth"
description="Powerful tools to manage your money efficiently."
/>
+
+
+
+
@@ -423,4 +283,4 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/register/page.tsx b/src/app/register/page.tsx
new file mode 100644
index 0000000..c57cce0
--- /dev/null
+++ b/src/app/register/page.tsx
@@ -0,0 +1,47 @@
+"use client";
+
+import { useState } from "react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import FooterCard from '@/components/sections/footer/FooterCard';
+
+export default function RegisterPage() {
+ const [email, setEmail] = useState("");
+ const [password, setPassword] = useState("");
+
+ return (
+
+
+
+
+
+ );
+}
\ No newline at end of file