|
1 | | -import { Routes, Route, Link } from "react-router-dom"; |
2 | | -import logo from "/images/logo.png"; |
3 | | -import Footer from "./components/sections/Footer"; |
| 1 | +import { Link, Route, Routes } from "react-router-dom"; |
4 | 2 | import About from "./components/sections/About"; |
5 | | -import Tracks from "./components/sections/Tracks"; |
6 | 3 | import Faq from "./components/sections/FAQ"; |
| 4 | +import Footer from "./components/sections/Footer"; |
| 5 | +import Home from "./components/sections/Home"; |
7 | 6 | import Photos from "./components/sections/Photos"; |
8 | 7 | import Schedule from "./components/sections/Schedule"; |
9 | | -import Home from "./components/sections/Home"; |
10 | | -import Countdown from "./components/Countdown"; |
| 8 | +import Tracks from "./components/sections/Tracks"; |
| 9 | +import logo from "/images/logo.png"; |
11 | 10 |
|
12 | 11 | function DesktopLayout() { |
13 | 12 | return ( |
14 | 13 | <div className="flex flex-col h-screen overflow-hidden justify-between relative"> |
15 | | - <div className="flex flex-col justify-start"> |
16 | | - <div className="fixed top-4 w-full px-8 flex justify-between items-center z-50"> |
17 | | - <Link to="/"> |
18 | | - <img |
19 | | - src={logo} |
20 | | - alt="HackMIT Logo" |
21 | | - className="w-24 h-24 object-contain" |
22 | | - /> |
23 | | - </Link> |
| 14 | + <div className="w-full flex justify-center bg-magenta text-light-pink text-xl py-2"> |
| 15 | + <div> |
| 16 | + Interested in Blueprint 2026? Fill out our{" "} |
24 | 17 | <a |
25 | | - href="https://plume.hackmit.org" |
26 | | - target="_blank" |
27 | | - className="bg-magenta text-light-pink px-4 py-2 rounded-lg font-medium text-4xl hover:opacity-80 transition-opacity" |
| 18 | + className="text-pale-yellow underline cursor-pointer" |
| 19 | + href="https://go.hackmit.org/bp-interest" |
28 | 20 | > |
29 | | - Apply |
30 | | - </a> |
| 21 | + interest form |
| 22 | + </a>{" "} |
| 23 | + to receive updates as soon as applications open! |
31 | 24 | </div> |
32 | | - <div className="fixed top-28 w-full flex items-center justify-between text-magenta font-medium text-xl px-8 z-30"> |
33 | | - <div>3.1 - 3.2 2025</div> |
34 | | - <Countdown |
35 | | - className="flex flex-col items-end" |
36 | | - to={new Date("February 3, 2025 23:59:59 EST")} |
37 | | - /> |
| 25 | + </div> |
| 26 | + <div className="relative flex flex-col justify-start"> |
| 27 | + <div className="absolute w-full px-8 flex justify-between items-center z-50"> |
| 28 | + <div> |
| 29 | + <Link to="/"> |
| 30 | + <img |
| 31 | + src={logo} |
| 32 | + alt="HackMIT Logo" |
| 33 | + className="w-24 h-24 object-contain" |
| 34 | + /> |
| 35 | + </Link> |
| 36 | + <div>3.1 - 3.2 2025</div> |
| 37 | + </div> |
| 38 | + <div /> |
38 | 39 | </div> |
39 | 40 | <div></div> |
40 | 41 | </div> |
|
0 commit comments