|
| 1 | +--- |
| 2 | +import Navbar from "../../components/Navbar.astro"; |
| 3 | +import Layout from "../../layouts/Layout.astro"; |
| 4 | +import CUNELogo from "../../assets/specials/tech-builders-challenge/cune-logo.jpg"; |
| 5 | +import SCCLogo from "../../assets/specials/tech-builders-challenge/scc-logo.jpg"; |
| 6 | +import SewardCountyLogo from "../../assets/specials/tech-builders-challenge/seward-county-logo.png"; |
| 7 | +import SewardPublicLogo from "../../assets/specials/tech-builders-challenge/seward-public-logo.png"; |
| 8 | +import Jtop1 from "../../assets/specials/tech-builders-challenge/jtop-1.jpg"; |
| 9 | +import { Image } from "astro:assets"; |
| 10 | +--- |
| 11 | + |
| 12 | +<Layout title="Nebraska Tech Builders Challenge"> |
| 13 | + <Navbar /> |
| 14 | + <div |
| 15 | + class="relative isolate overflow-hidden bg-gray-900 px-6 py-24 sm:py-32 lg:px-8 mt-16" |
| 16 | + > |
| 17 | + <div |
| 18 | + aria-hidden="true" |
| 19 | + class="hidden sm:absolute sm:-top-10 sm:right-1/2 sm:mr-10 sm:block sm:transform-gpu sm:blur-3xl" |
| 20 | + style={{ zIndex: -10 }} |
| 21 | + > |
| 22 | + <div |
| 23 | + class="aspect-[1097_/_845] w-[68.5625rem] bg-gradient-to-tr from-gray-900 to-cune-blue opacity-20" |
| 24 | + style="clip-path: polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%);" |
| 25 | + > |
| 26 | + </div> |
| 27 | + </div> |
| 28 | + <div |
| 29 | + aria-hidden="true" |
| 30 | + style={{ zIndex: -10 }} |
| 31 | + class="absolute -top-52 left-1/2 -translate-x-1/2 transform-gpu blue-3xl sm:-top-[28rem] sm:ml-4 sm:translate-x-0 sm:transform-gpu" |
| 32 | + > |
| 33 | + <div |
| 34 | + class="aspect-[1097_/_845] w-[68.5625rem] bg-gradient-to-tr from-gray-900 to-cune-blue opacity-20" |
| 35 | + style="clip-path: polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%);" |
| 36 | + > |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + <div class="mx-auto max-w-2xl text-center"> |
| 40 | + <h1 class="text-4xl font-bold tracking-tight text-white sm:text-6xl"> |
| 41 | + Nebraska Tech Builders Challenge |
| 42 | + </h1> |
| 43 | + <p class="mt-6 text-lg leading-8 text-gray-300"> |
| 44 | + Attend. Create. Innovate. Transform Seward in 24 Hours!<br /> |
| 45 | + <span class="text-gray-100 font-bold"> |
| 46 | + Cattle Conference Hall, 800 N Columbia Ave at 1:30 PM September 20th |
| 47 | + </span> |
| 48 | + <a |
| 49 | + class="mt-6 rounded-md bg-transparent ring ring-white px-3.5 py-2.5 text-sm font-bold shadow-sm hover:bg-cune-blue text-white block" |
| 50 | + href="https://docs.google.com/forms/d/e/1FAIpQLSdAg6XEZHVW2qHrEKp3xuez_AwTA1ak3dzOlu9GcyEStzlbUw/viewform" |
| 51 | + > |
| 52 | + Sign Up Now |
| 53 | + </a> |
| 54 | + </p> |
| 55 | + </div> |
| 56 | + </div> |
| 57 | + <div class="bg-white py-4 sm:py-8"> |
| 58 | + <div class="mx-auto max-w-7xl px-6 lg:px-8"> |
| 59 | + <h2 class="text-center text-lg font-semibold leading-8 text-gray-900"> |
| 60 | + A partnership between |
| 61 | + </h2> |
| 62 | + <div |
| 63 | + class="mx-auto mt-10 grid max-w-lg grid-cols-4 items-center gap-x-8 gap-y-10 sm:max-w-xl sm:grid-cols-6 sm:gap-x-10 lg:mx-0 lg:max-w-none lg:grid-cols-4" |
| 64 | + > |
| 65 | + <Image |
| 66 | + loading="eager" |
| 67 | + src={CUNELogo} |
| 68 | + alt="Concordia University, Nebraska" |
| 69 | + width={158} |
| 70 | + height={48} |
| 71 | + class="col-span-2 max-h-12 w-full object-contain lg:col-span-1" |
| 72 | + /> |
| 73 | + <Image |
| 74 | + loading="eager" |
| 75 | + src={SCCLogo} |
| 76 | + alt="Southeast Community College (SCC)" |
| 77 | + width={158} |
| 78 | + height={48} |
| 79 | + class="col-span-2 max-h-12 w-full object-contain lg:col-span-1" |
| 80 | + /> |
| 81 | + <Image |
| 82 | + loading="eager" |
| 83 | + src={SewardCountyLogo} |
| 84 | + alt="Seward County Camber of Commerce" |
| 85 | + width={158} |
| 86 | + height={48} |
| 87 | + class="col-span-2 max-h-12 w-full object-contain lg:col-span-1" |
| 88 | + /> |
| 89 | + <Image |
| 90 | + loading="eager" |
| 91 | + src={SewardPublicLogo} |
| 92 | + alt="Seward Public Schools" |
| 93 | + width={158} |
| 94 | + height={48} |
| 95 | + class="col-span-2 max-h-12 w-full object-contain lg:col-span-1" |
| 96 | + /> |
| 97 | + </div> |
| 98 | + </div> |
| 99 | + </div> |
| 100 | + |
| 101 | + <article class="mx-auto max-w-3xl text-base leading-7 text-gray-700 py-8"> |
| 102 | + <p class="text-base font-semibold leading-7 text-cune-blue"> |
| 103 | + Introducing the |
| 104 | + </p> |
| 105 | + <h1 |
| 106 | + class="mt-2 text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl" |
| 107 | + > |
| 108 | + Nebraska Tech Builders Challenge |
| 109 | + </h1> |
| 110 | + <p class="mt-6 text-xl leading-8"> |
| 111 | + Join us for an exhilarating two-day challenge, during which you'll bring |
| 112 | + your ideas to life and turn your vision into reality! |
| 113 | + </p> |
| 114 | + <figure class="mt-16"> |
| 115 | + <Image |
| 116 | + class="object-cover bg-gray-50 rounded-xl aspect-video" |
| 117 | + src={Jtop1} |
| 118 | + alt="Janzow Campus Center, where the event will be held" |
| 119 | + /> |
| 120 | + </figure> |
| 121 | + <section class="max-w-7xl mt-10"> |
| 122 | + <h2 class="text-2xl font-bold tracking-tight text-gray-900"> |
| 123 | + Who is it for? |
| 124 | + </h2> |
| 125 | + <p class="mt-6"> |
| 126 | + This event is open to all high school and college students, whether |
| 127 | + you're a seasoned coder or simply curious about how technology can solve |
| 128 | + real-world problems. |
| 129 | + </p> |
| 130 | + </section> |
| 131 | + <section class="max-w-7xl mt-10"> |
| 132 | + <h2 class="text-2xl font-bold tracking-tight text-gray-900"> |
| 133 | + What experience do I need? |
| 134 | + </h2> |
| 135 | + <p class="mt-6"> |
| 136 | + No prior experience is needed—just bring your creativity and enthusiasm! |
| 137 | + Complete a workshop on building software without programming, learn from |
| 138 | + experts, and take a break with fun activities like video games and board |
| 139 | + games. Collaborate with fellow students, tackle challenges, and compete |
| 140 | + for prizes. |
| 141 | + </p> |
| 142 | + </section> |
| 143 | + <section class="max-w-7xl mt-10"> |
| 144 | + <h2 class="text-2xl font-bold tracking-tight text-gray-900"> |
| 145 | + When is it? |
| 146 | + </h2> |
| 147 | + <p class="mt-6"> |
| 148 | + <time datetime="">September 20st 1:30PM - September 21st 1:30 PM</time> |
| 149 | + <br /> |
| 150 | + It will be hosted at Concordia University in Seward, Nebraska. |
| 151 | + <br /> |
| 152 | + <address>800 N Columbia Avenue, Seward, NE, 68434</address> |
| 153 | + </p> |
| 154 | + </section> |
| 155 | + <hr class="max-w-7xl mx-auto mt-16" /> |
| 156 | + <div class="lg:px-8 sm:py-32 sm:px-6 py-24 px-6"> |
| 157 | + <div class="mx-auto max-w-2xl text-center" id="cta"> |
| 158 | + <h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl"> |
| 159 | + Sign up Today! |
| 160 | + </h2> |
| 161 | + <p class="mx-auto mt-6 text-lg leading-8 text-gray-600"> |
| 162 | + If you are intested in joing, please sign up using the form below! |
| 163 | + </p> |
| 164 | + <div class="mt-10 flex items-center justify-center gap-x-6"> |
| 165 | + <a |
| 166 | + class="rounded-md bg-cune-blue px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm" |
| 167 | + href="https://docs.google.com/forms/d/e/1FAIpQLSdAg6XEZHVW2qHrEKp3xuez_AwTA1ak3dzOlu9GcyEStzlbUw/viewform" |
| 168 | + > |
| 169 | + Reach Out |
| 170 | + </a> |
| 171 | + </div> |
| 172 | + </div> |
| 173 | + </div> |
| 174 | + </article> |
| 175 | +</Layout> |
0 commit comments