File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed
Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change 11import Footer from "@/components/Footer" ;
22import Navbar from "@/components/Navbar" ;
3- import TeamPage from "@/components/TeamPage " ;
3+ import Revealingsoon from "@/components/revealingsoon " ;
44import ScrollToTop from "@/components/ScrollToTop" ;
55
66const Team = ( ) => {
77 return (
88 < >
99 < Navbar />
10- < TeamPage />
10+ { /* <TeamPage /> */ }
11+ < Revealingsoon />
1112 < ScrollToTop />
1213 < Footer />
1314 </ >
You can’t perform that action at this time.
0 commit comments