diff --git a/website/components/TheBaseNavbar.vue b/website/components/TheBaseNavbar.vue index 841c58a2..c342d448 100644 --- a/website/components/TheBaseNavbar.vue +++ b/website/components/TheBaseNavbar.vue @@ -1,57 +1,81 @@ - diff --git a/website/layouts/default.vue b/website/layouts/default.vue index 49b1f65e..9b26783d 100644 --- a/website/layouts/default.vue +++ b/website/layouts/default.vue @@ -1,7 +1,5 @@ diff --git a/website/nuxt.config.ts b/website/nuxt.config.ts index 96ceb035..d5b2c511 100644 --- a/website/nuxt.config.ts +++ b/website/nuxt.config.ts @@ -31,9 +31,12 @@ export default defineNuxtConfig({ { rel: "manifest", href: "./manifest.json", - crossorigin: "use-credentials", }, ], + meta: [ + { "http-equiv": "X-UA-Compatible", content: "IE=edge" }, + { property: "og:site:name", content: "MyFursona" }, + ], }, }, build: { diff --git a/website/tailwind.config.js b/website/tailwind.config.js index 847c0ee0..1b4301fa 100644 --- a/website/tailwind.config.js +++ b/website/tailwind.config.js @@ -12,6 +12,7 @@ module.exports = { "./app.vue", ], plugins: [ + require("@tailwindcss/typography"), pluginBaseStyles(({ addBase, theme }) => { addBase({ html: { @@ -37,7 +38,7 @@ module.exports = { "open-sans": ["Open Sans", ...defaultTheme.fontFamily.sans], }, colors: { - "base": { + base: { DEFAULT: "#634E97", 50: "#FCFBFD", 100: "#EBE7F3", @@ -50,6 +51,58 @@ module.exports = { 800: "#201A32", 900: "#0B0911", }, + red: { + DEFAULT: "#E94E4E", + 50: "#FFFDFD", + 100: "#FCE4E4", + 200: "#F5B2B2", + 300: "#EF8080", + 400: "#E94E4E", + 500: "#E42121", + 600: "#BA1718", + 700: "#8D1113", + 800: "#5F0C0D", + 900: "#320607", + }, + orange: { + DEFAULT: "#E5740B", + 50: "#FCE2C9", + 100: "#FBD2AC", + 200: "#F8B272", + 300: "#F69337", + 400: "#E5740B", + 500: "#BE6109", + 600: "#974E07", + 700: "#703A05", + 800: "#492603", + 900: "#221202", + }, + lime: { + DEFAULT: "#E0BC0B", + 50: "#FCF2C5", + 100: "#FBEBA7", + 200: "#F8DF6D", + 300: "#F5D432", + 400: "#E0BC0B", + 500: "#B99D09", + 600: "#927D07", + 700: "#6B5C05", + 800: "#443B03", + 900: "#1D1A01", + }, + pink: { + DEFAULT: "#E36DA6", + 50: "#FAE5F0", + 100: "#F7D4E6", + 200: "#F0B2D2", + 300: "#EA90BC", + 400: "#E36DA6", + 500: "#DA3E88", + 600: "#BC246A", + 700: "#8D1B4E", + 800: "#5E1233", + 900: "#2F0919", + }, }, }, }, diff --git a/website/types/index.ts b/website/types/index.ts new file mode 100644 index 00000000..e1d4d03c --- /dev/null +++ b/website/types/index.ts @@ -0,0 +1 @@ +type DefNullable = T | null