Skip to content

Commit

Permalink
constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Cat2005 committed May 29, 2024
1 parent c596e45 commit 31fa87a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
9 changes: 9 additions & 0 deletions app/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export interface Event {
id: number
title: string
description: string
eventURL?: string
location: string
date: string
icon?: string
}
5 changes: 2 additions & 3 deletions app/globals.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');


:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
Expand Down
5 changes: 5 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ const config: Config = {
fontFamily: {
'space-mono': ['"Space Mono"', 'monospace'],
},
fontWeight: {
'space-mono-light': '300',
'space-mono-regular': '400',
'space-mono-bold': '700',
},
},
},
plugins: [],
Expand Down

0 comments on commit 31fa87a

Please sign in to comment.