diff --git a/index.html b/index.html index 0d91dd7..ec70ac6 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,75 @@ - + Smart Ticketing + + + + + -
+
+ +
@@ -15,5 +77,7 @@ + + diff --git a/scripts/app.js b/scripts/app.js new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/scripts/app.js @@ -0,0 +1 @@ + diff --git a/styles/styles.css b/styles/styles.css new file mode 100644 index 0000000..1614984 --- /dev/null +++ b/styles/styles.css @@ -0,0 +1,8 @@ +@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"); + +.font-inter { + font-family: "Inter", sans-serif; +} +.font-raleway { + font-family: "Raleway", sans-serif; +} diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..19973dd --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,8 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.{html,js}"], + theme: { + extend: {}, + }, + plugins: [], +};