Setup initial phototag page, add navbar with explicit AppWrapper component

This commit is contained in:
Xevion
2022-12-30 16:10:05 -06:00
parent bd24cffee0
commit b253e06e59
5 changed files with 203 additions and 14 deletions

View File

@@ -1,17 +1,22 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
manrope: ["\"Manrope\"", "sans-serif"],
opensans: ["\"Open Sans\"", "sans-serif"],
inter: ["\"Inter\"", "sans-serif"],
mono: ["\"Roboto Mono\"", "monospace"],
raleway: ["\"Raleway\"", "sans-serif"],
roboto: ["\"Roboto\""],
},
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
zinc: {
850: "#1D1D20"
}
},
fontFamily: {
manrope: ["\"Manrope\"", "sans-serif"],
opensans: ["\"Open Sans\"", "sans-serif"],
inter: ["\"Inter\"", "sans-serif"],
mono: ["\"Roboto Mono\"", "monospace"],
raleway: ["\"Raleway\"", "sans-serif"],
roboto: ["\"Roboto\""],
},
},
},
},
plugins: [],
plugins: [require('@tailwindcss/typography')],
};