Add navbar and jumbotron markup

This commit is contained in:
Oliver Davies 2023-01-09 09:21:55 +00:00
commit 192dcfebb4
13 changed files with 3853 additions and 0 deletions

8
tailwind.config.cjs Normal file
View file

@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
}