-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da58b02
commit df88a6e
Showing
7 changed files
with
212 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { motion } from 'framer-motion' | ||
|
||
export const IncubationPortal = () => { | ||
return ( | ||
<section className="min-h-screen flex items-center justify-center bg-[rgb(var(--color-background))]"> | ||
<motion.div | ||
initial={{ opacity: 0, y: 20 }} | ||
animate={{ opacity: 1, y: 0 }} | ||
transition={{ duration: 0.6 }} | ||
className="text-center px-4" | ||
> | ||
{/* Logo */} | ||
<div className="w-48 h-48 mx-auto mb-8 relative"> | ||
<div className="absolute inset-0 bg-gradient-to-br from-purple-500/20 to-blue-500/20 blur-xl" /> | ||
<img src="/logo.svg" alt="X3 Momentum Logo" className="relative w-full h-full object-contain" /> | ||
</div> | ||
|
||
<h1 className="text-4xl sm:text-5xl font-bold text-white mb-6"> | ||
Coming Soon | ||
</h1> | ||
<p className="text-xl text-gray-300 max-w-2xl mx-auto"> | ||
Our incubation portal is under development. Stay tuned for exciting opportunities. | ||
</p> | ||
</motion.div> | ||
</section> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { motion } from 'framer-motion' | ||
|
||
export const RecruitmentPortal = () => { | ||
return ( | ||
<section className="min-h-screen flex items-center justify-center bg-[rgb(var(--color-background))]"> | ||
<motion.div | ||
initial={{ opacity: 0, y: 20 }} | ||
animate={{ opacity: 1, y: 0 }} | ||
transition={{ duration: 0.6 }} | ||
className="text-center px-4" | ||
> | ||
{/* Logo */} | ||
<div className="w-48 h-48 mx-auto mb-8 relative"> | ||
<div className="absolute inset-0 bg-gradient-to-br from-purple-500/20 to-blue-500/20 blur-xl" /> | ||
<img src="/logo.svg" alt="X3 Momentum Logo" className="relative w-full h-full object-contain" /> | ||
</div> | ||
|
||
<h1 className="text-4xl sm:text-5xl font-bold text-white mb-6"> | ||
Coming Soon | ||
</h1> | ||
<p className="text-xl text-gray-300 max-w-2xl mx-auto"> | ||
Our recruitment portal is under development. Stay tuned for exciting opportunities. | ||
</p> | ||
</motion.div> | ||
</section> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters