From fa50cd39b417b30f667bfc96dba42d398eed3929 Mon Sep 17 00:00:00 2001 From: Nico Haider Date: Fri, 17 Apr 2026 18:01:38 +0200 Subject: [PATCH] feat(core): base pages --- app/[locale]/about/page.tsx | 9 +++++++++ app/[locale]/projects/page.tsx | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 app/[locale]/about/page.tsx create mode 100644 app/[locale]/projects/page.tsx diff --git a/app/[locale]/about/page.tsx b/app/[locale]/about/page.tsx new file mode 100644 index 0000000..f84bef0 --- /dev/null +++ b/app/[locale]/about/page.tsx @@ -0,0 +1,9 @@ +export default function About() { + return ( +
+

Nico Haider

+

3843 Dobersberg

+

Portfolio

+
+ ); +} \ No newline at end of file diff --git a/app/[locale]/projects/page.tsx b/app/[locale]/projects/page.tsx new file mode 100644 index 0000000..c456a15 --- /dev/null +++ b/app/[locale]/projects/page.tsx @@ -0,0 +1,5 @@ +export default function Projects() { + return ( +

in work ...

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