diff --git a/src/components/Container.astro b/src/components/Container.astro index f5d9b2a..0dba4ba 100644 --- a/src/components/Container.astro +++ b/src/components/Container.astro @@ -1,5 +1,4 @@ --- -import { Icon } from 'astro-icon/components'; import AccordionLayout from '../layouts/AccordionLayout.astro'; import * as about from '../pages/about/about.md'; import Card from './Card.astro'; diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 8529ead..9ed67da 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -3,7 +3,7 @@ - Fritz - Jan Stevens + Jan Stevens diff --git a/tailwind.config.mjs b/tailwind.config.mjs index df4461d..b740f12 100644 --- a/tailwind.config.mjs +++ b/tailwind.config.mjs @@ -1,32 +1,35 @@ /** @type {import('tailwindcss').Config} */ -const defaultTheme = require('tailwindcss/defaultTheme') +const defaultTheme = require('tailwindcss/defaultTheme'); export default { - content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}', './node_modules/flowbite/**/*.js'], - daisyui: { - themes: [ - { - lofi: { - ...require("daisyui/src/theming/themes")["lofi"], - "--rounded-box": "1rem", - "--rounded-btn": "0.5rem", - "--rounded-badge": "1.9rem" - }, - black: { - ...require("daisyui/src/theming/themes")["black"], - "--rounded-box": "1rem", - "--rounded-btn": "0.5rem", - "--rounded-badge": "1.9rem", - "secondary": "#e5e5e5" - } - } - ], - }, - theme: { - extend: { - fontFamily: { - 'sans': ["DM Sans", "Inter", ...defaultTheme.fontFamily.sans], - }, - }, - }, - plugins: [require("@tailwindcss/typography"), require("daisyui")], -} + content: [ + './src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}', + './node_modules/flowbite/**/*.js', + ], + daisyui: { + themes: [ + { + lofi: { + ...require('daisyui/src/theming/themes')['lofi'], + '--rounded-box': '1rem', + '--rounded-btn': '0.5rem', + '--rounded-badge': '1.9rem', + }, + black: { + ...require('daisyui/src/theming/themes')['black'], + '--rounded-box': '1rem', + '--rounded-btn': '0.5rem', + '--rounded-badge': '1.9rem', + secondary: '#e5e5e5', + }, + }, + ], + }, + theme: { + extend: { + fontFamily: { + sans: ['DM Sans', 'Inter', ...defaultTheme.fontFamily.sans], + }, + }, + }, + plugins: [require('@tailwindcss/typography'), require('daisyui')], +};