diff --git a/apps/landing/src/app/about/page.tsx b/apps/landing/src/app/about/page.tsx
new file mode 100644
index 0000000..432d85f
--- /dev/null
+++ b/apps/landing/src/app/about/page.tsx
@@ -0,0 +1,9 @@
+import { ComingSoon } from '../components/ComingSoon';
+
+export default function AboutPage() {
+ return (
+
+
+
+ );
+}
diff --git a/apps/landing/src/app/companies/page.tsx b/apps/landing/src/app/companies/page.tsx
new file mode 100644
index 0000000..1c44bf0
--- /dev/null
+++ b/apps/landing/src/app/companies/page.tsx
@@ -0,0 +1,9 @@
+import { ComingSoon } from '../components/ComingSoon';
+
+export default function CompaniesPage() {
+ return (
+
+
+
+ );
+}
diff --git a/apps/landing/src/app/components/ComingSoon.tsx b/apps/landing/src/app/components/ComingSoon.tsx
new file mode 100644
index 0000000..bb13a90
--- /dev/null
+++ b/apps/landing/src/app/components/ComingSoon.tsx
@@ -0,0 +1,64 @@
+import React from 'react';
+import { ColoredDiv } from 'ui';
+
+import { container } from '../../styles/styles';
+
+type Props = {
+ pageName: string;
+};
+export const ComingSoon = ({ pageName }: Props) => {
+ return (
+
+ {pageName}
+ Coming Soon..
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
diff --git a/apps/landing/src/app/components/Hero/HeroRight.tsx b/apps/landing/src/app/components/Hero/HeroRight.tsx
index ade2bba..0091351 100644
--- a/apps/landing/src/app/components/Hero/HeroRight.tsx
+++ b/apps/landing/src/app/components/Hero/HeroRight.tsx
@@ -86,7 +86,7 @@ export const HeroRight = () => {
// textLocation='left'
className='-top-[40%] -right-[2%]'
// textClassName='right-3/4 bottom-3 md:left-1/2 md:bottom-0'
- textClassName='right-3/4 bottom-3 md:right-1/2 md:bottom-1/3'
+ textClassName='right-3/4 bottom-3 md:right-3/4 md:bottom-1/3'
/>
),
},
diff --git a/apps/landing/src/app/search/page.tsx b/apps/landing/src/app/search/page.tsx
new file mode 100644
index 0000000..fca25eb
--- /dev/null
+++ b/apps/landing/src/app/search/page.tsx
@@ -0,0 +1,9 @@
+import { ComingSoon } from '../components/ComingSoon';
+
+export default function SearchPage() {
+ return (
+
+
+
+ );
+}
diff --git a/apps/landing/src/app/society/page.tsx b/apps/landing/src/app/society/page.tsx
new file mode 100644
index 0000000..fffe430
--- /dev/null
+++ b/apps/landing/src/app/society/page.tsx
@@ -0,0 +1,9 @@
+import { ComingSoon } from '../components/ComingSoon';
+
+export default function SocietyPage() {
+ return (
+
+
+
+ );
+}
diff --git a/apps/landing/src/components/Header/HeaderLeft.tsx b/apps/landing/src/components/Header/HeaderLeft.tsx
index 8de12a9..5b1feaf 100644
--- a/apps/landing/src/components/Header/HeaderLeft.tsx
+++ b/apps/landing/src/components/Header/HeaderLeft.tsx
@@ -23,7 +23,7 @@ function HeaderLeft() {
+ className='relative md:flex hidden items-center w-fit p-2 rounded min-w-fit h-8 min-h-[2rem]'>
diff --git a/apps/landing/src/components/Header/NavBar.tsx b/apps/landing/src/components/Header/NavBar.tsx
index 2b6c66f..6a10347 100644
--- a/apps/landing/src/components/Header/NavBar.tsx
+++ b/apps/landing/src/components/Header/NavBar.tsx
@@ -10,7 +10,7 @@ function NavBar() {
<>
+ className='relative flex md:hidden items-center justify-center w-full min-w-fit h-8 min-h-[2rem] hover:bg-base-300'>