feat: add landing page

This commit is contained in:
2024-01-22 14:40:39 +07:00
parent 445a218a9e
commit f4ee25de8e
12 changed files with 2886 additions and 138 deletions

View File

@@ -0,0 +1,15 @@
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
mono: ["Geist Mono", ...defaultTheme.fontFamily.mono],
},
},
},
plugins: [require("@tailwindcss/typography")],
};