From d443c28c48cd14c30cc41f28c8dd068f28cb4b55 Mon Sep 17 00:00:00 2001 From: ValeuDoamne Date: Mon, 8 Apr 2024 03:08:27 +0300 Subject: [PATCH] add about us page --- src/app/about/page.tsx | 11 +++++++++++ src/components/Header.tsx | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..d058c2b --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,11 @@ + +export default function About() { + return ( +
+

About Us

+

We are a team of individuals who love to use Google products to create beautiful webapps.

+ +
+ ); +} diff --git a/src/components/Header.tsx b/src/components/Header.tsx index c357bfd..c7ca42d 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -14,6 +14,7 @@ export default function Header() { ) -} \ No newline at end of file +}