Index: app/(app)/add/page.tsx
===================================================================
--- app/(app)/add/page.tsx	(revision 09fcd2a6507ff22091bc0d3811fe5ad3c45c204a)
+++ app/(app)/add/page.tsx	(revision 09fcd2a6507ff22091bc0d3811fe5ad3c45c204a)
@@ -0,0 +1,36 @@
+import { poppins } from '@/app/ui/fonts';
+
+export default function Page() {
+    return (
+        <>
+            <main
+                className="
+                    flex-1
+                    flex
+                    flex-col
+                    items-center
+                    justify-center 
+                    md:justify-center
+                    px-4
+                    mt-[-80]
+                "
+            >
+                <h1
+                    className={`${poppins.className} 
+                        text-[40px] 
+                        leading-tight
+                        tracking-tight
+                        font-semibold 
+                        text-center
+                        mb-10 
+                        text-white 
+                        antialiased
+                    `}
+                >
+                    Add Transaction
+                </h1>
+
+            </main>
+        </>
+    );
+}
Index: app/(app)/analytics/page.tsx
===================================================================
--- app/(app)/analytics/page.tsx	(revision 09fcd2a6507ff22091bc0d3811fe5ad3c45c204a)
+++ app/(app)/analytics/page.tsx	(revision 09fcd2a6507ff22091bc0d3811fe5ad3c45c204a)
@@ -0,0 +1,36 @@
+import { poppins } from '@/app/ui/fonts';
+
+export default function Page() {
+    return (
+        <>
+            <main
+                className="
+                    flex-1
+                    flex
+                    flex-col
+                    items-center
+                    justify-center 
+                    md:justify-center
+                    px-4
+                    mt-[-80]
+                "
+            >
+                <h1
+                    className={`${poppins.className} 
+                        text-[40px] 
+                        leading-tight
+                        tracking-tight
+                        font-semibold 
+                        text-center
+                        mb-10 
+                        text-white 
+                        antialiased
+                    `}
+                >
+                    Analytics
+                </h1>
+
+            </main>
+        </>
+    );
+}
Index: app/(app)/history/page.tsx
===================================================================
--- app/(app)/history/page.tsx	(revision 09fcd2a6507ff22091bc0d3811fe5ad3c45c204a)
+++ app/(app)/history/page.tsx	(revision 09fcd2a6507ff22091bc0d3811fe5ad3c45c204a)
@@ -0,0 +1,36 @@
+import { poppins } from '@/app/ui/fonts';
+
+export default function Page() {
+    return (
+        <>
+            <main
+                className="
+                    flex-1
+                    flex
+                    flex-col
+                    items-center
+                    justify-center 
+                    md:justify-center
+                    px-4
+                    mt-[-80]
+                "
+            >
+                <h1
+                    className={`${poppins.className} 
+                        text-[40px] 
+                        leading-tight
+                        tracking-tight
+                        font-semibold 
+                        text-center
+                        mb-10 
+                        text-white 
+                        antialiased
+                    `}
+                >
+                    History
+                </h1>
+
+            </main>
+        </>
+    );
+}
Index: app/(app)/profile/page.tsx
===================================================================
--- app/(app)/profile/page.tsx	(revision 09fcd2a6507ff22091bc0d3811fe5ad3c45c204a)
+++ app/(app)/profile/page.tsx	(revision 09fcd2a6507ff22091bc0d3811fe5ad3c45c204a)
@@ -0,0 +1,36 @@
+import { poppins } from '@/app/ui/fonts';
+
+export default function Page() {
+    return (
+        <>
+            <main
+                className="
+                    flex-1
+                    flex
+                    flex-col
+                    items-center
+                    justify-center 
+                    md:justify-center
+                    px-4
+                    mt-[-80]
+                "
+            >
+                <h1
+                    className={`${poppins.className} 
+                        text-[40px] 
+                        leading-tight
+                        tracking-tight
+                        font-semibold 
+                        text-center
+                        mb-10 
+                        text-white 
+                        antialiased
+                    `}
+                >
+                    Profile
+                </h1>
+
+            </main>
+        </>
+    );
+}
