Skip to content

Commit 696cd01

Browse files
committed
fix: replaced team page to revealing soon
1 parent bdc7ce8 commit 696cd01

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
const Revealingsoon = () => {
2+
return (
3+
<>
4+
<div class="relative w-full flex items-center justify-center h-screen top-[-100px] text-center">
5+
<div class="flex flex-col justify-center text-white w-full ">
6+
<h1 class="text-5xl">
7+
Revealing <b>SOON!</b>
8+
</h1>
9+
<p className="mt-3">Stay tuned!!!</p>
10+
11+
<div class="mt-10 mb-5">
12+
<div class="shadow w-full bg-white mt-2 max-w-2xl mx-auto rounded-full">
13+
<div
14+
class="rounded-full bg-indigo-600 text-xs leading-none text-center text-white py-1"
15+
style={{ width: "75%" }}
16+
>
17+
75%
18+
</div>
19+
</div>
20+
</div>
21+
</div>
22+
</div>
23+
</>
24+
);
25+
};
26+
27+
export default Revealingsoon;

src/pages/team/index.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import Footer from "@/components/Footer";
22
import Navbar from "@/components/Navbar";
3-
import TeamPage from "@/components/TeamPage";
3+
import Revealingsoon from "@/components/revealingsoon";
44
import ScrollToTop from "@/components/ScrollToTop";
55

66
const Team = () => {
77
return (
88
<>
99
<Navbar />
10-
<TeamPage />
10+
{/* <TeamPage /> */}
11+
<Revealingsoon />
1112
<ScrollToTop />
1213
<Footer />
1314
</>

0 commit comments

Comments
 (0)