From f1534c7ddd830269a2345a7a67ba5aff40c8dcf5 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 30 Jul 2024 07:00:33 -0400 Subject: [PATCH] new pages --- app/about-us/page.tsx | 9 +++++++++ app/contact/page.tsx | 9 +++++++++ app/faq/page.tsx | 9 +++++++++ 3 files changed, 27 insertions(+) create mode 100644 app/about-us/page.tsx create mode 100644 app/contact/page.tsx create mode 100644 app/faq/page.tsx diff --git a/app/about-us/page.tsx b/app/about-us/page.tsx new file mode 100644 index 0000000..7a569cf --- /dev/null +++ b/app/about-us/page.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +function page() { + return ( +
About Us here
+ ) +} + +export default page \ No newline at end of file diff --git a/app/contact/page.tsx b/app/contact/page.tsx new file mode 100644 index 0000000..6901ecb --- /dev/null +++ b/app/contact/page.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +function page() { + return ( +
Contact Here
+ ) +} + +export default page \ No newline at end of file diff --git a/app/faq/page.tsx b/app/faq/page.tsx new file mode 100644 index 0000000..e3e3bd4 --- /dev/null +++ b/app/faq/page.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +function page() { + return ( +
Faq Here
+ ) +} + +export default page \ No newline at end of file