mirror of
https://github.com/PotentiaRobotics/potentia-website.git
synced 2025-04-09 14:50:16 -04:00
35 lines
989 B
Plaintext
35 lines
989 B
Plaintext
---
|
|
//Layout imports
|
|
import Layout from '../layouts/Layout.astro';
|
|
import Nav from '../components/Nav.astro';
|
|
import Footer from '../components/Footer.astro';
|
|
//Component Imports
|
|
import OutlineButton from '/src/components/buttons/OutlineButton.astro'
|
|
//Image imports
|
|
|
|
|
|
|
|
---
|
|
|
|
<Layout title="| Success!!">
|
|
<!-- Navbar -->
|
|
<Nav> <span slot="olympian" class="text-blue-300">O L Y M P I A N</span></Nav>
|
|
|
|
<section class=" bg-gray-800 h-screen mt-40">
|
|
<div class="py-8 lg:py-16 px-4 mx-auto max-w-screen-md">
|
|
<h2 class="mb-4 text-4xl tracking-tight font-extrabold text-center text-white">Form Successfully Submitted</h2>
|
|
<p class="mb-8 lg:mb-16 font-light text-center text-gray-400 sm:text-xl">We will get back to you very soon 😏</p>
|
|
|
|
|
|
<div class="flex flex-row justify-center space-x-20">
|
|
<OutlineButton link="/" text="Go Back Home" />
|
|
<OutlineButton link="/contact" text="Go Back to Contact" />
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
</Layout> |