Frontend boilerplate applikasjon

Next.js frontend applikasjon med tailwind

Authors: @J0hans1 @amalieem
This commit is contained in:
Markus Aleksander Råkil Johansen 2023-06-26 13:00:06 +02:00
parent efa66a1840
commit a3f00f7e13
15 changed files with 4477 additions and 0 deletions

View file

@ -0,0 +1,18 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}