- For general inquiries, reach out to our leadership team via email. -
- cometrobotics@utdallas.edu + ++ For general inquiries, reach out to our leadership team via email. +
+ cometrobotics@utdallas.edu +diff --git a/src/components/join.astro b/src/components/join.astro index 917ffb6..4a88f63 100644 --- a/src/components/join.astro +++ b/src/components/join.astro @@ -2,19 +2,19 @@ import { discordInvite, makerspaceMap } from '../data' interface Props { - theme: 'light' | 'dark'; + theme: 'light' | 'dark' } -const { theme } = Astro.props; +const { theme } = Astro.props -let bgColor = '#D9D9D9'; -let txtColor = 'black'; -let borderStyle = 'none'; +let bgColor = '#D9D9D9' +let txtColor = 'black' +let borderStyle = 'none' if (theme === 'dark') { - bgColor = '#1e1e1e'; - txtColor = 'white'; - borderStyle = 'solid'; + bgColor = '#1e1e1e' + txtColor = 'white' + borderStyle = 'solid' } --- diff --git a/src/content/config.ts b/src/content/config.ts index 653c24e..f24ded1 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -14,7 +14,7 @@ const projectCollection = defineCollection({ deprecated: z.boolean().default(false), stats: z.array(statSchema), mainImage: z.object({ src: z.string(), alt: z.string() }), - draft: z.boolean().default(false) + draft: z.boolean().default(false), }), }) diff --git a/src/layouts/base.astro b/src/layouts/base.astro index c863e80..ddd7936 100644 --- a/src/layouts/base.astro +++ b/src/layouts/base.astro @@ -7,15 +7,21 @@ import '../styles/App.css' import Navbar from '../components/navbar.astro' import Footer from '../components/footer.astro' + +interface Props { + title: string +} + +const { title } = Astro.props ---
- + -- For general inquiries, reach out to our leadership team via email. -
- cometrobotics@utdallas.edu + ++ For general inquiries, reach out to our leadership team via email. +
+ cometrobotics@utdallas.edu +