diff --git a/app/login/page.tsx b/app/login/page.tsx new file mode 100644 index 0000000..6f35a33 --- /dev/null +++ b/app/login/page.tsx @@ -0,0 +1,14 @@ +import LoginForm from "@components/custom" +export default function LoginPage() { + return ( +
+
+
+
+
+
+ +
+
+ ); +} diff --git a/images/logo.svg b/images/logo.svg new file mode 100644 index 0000000..bd92809 --- /dev/null +++ b/images/logo.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tailwind.config.ts b/tailwind.config.ts index 7477458..15d6704 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -1,20 +1,24 @@ import type { Config } from 'tailwindcss' const config: Config = { - colors: { - 'text': '#0f0f0f', - 'background': '#ffffff', - 'primary': '#3a5947', - 'secondary': '#80a256', - 'accent': '#9a1a33', - }, content: [ './pages/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}', './app/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { + fontFamily: { + display: ["Satisfy", "cursive"], + }, extend: { + colors: { + "backgroundColor": "#000000", + "textColor": "#F0F0F0", + "textFades": "#B0B0B0", + "primary": "#3A5945", + "secondary": "#86A95B", + "accent": "#991A33" + }, backgroundImage: { 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 'gradient-conic': @@ -24,4 +28,5 @@ const config: Config = { }, plugins: [], } + export default config