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