This commit is contained in:
2023-09-02 11:39:25 +05:30
parent 358671a829
commit c77351e537
3 changed files with 22 additions and 4 deletions

View File

@@ -18,6 +18,6 @@
<slot /> <slot />
</main> </main>
<footer> <footer class="px-4 py-2">
<p>&copy; Kevin Samuel, McKenzie Joseph, 2023</p> <p>&copy; Kevin Samuel, McKenzie Joseph, 2023</p>
</footer> </footer>

View File

@@ -1,2 +1,11 @@
<h1 class="text-3xl text-lime-600">Welcome to SvelteKit</h1> <article class="w-max m-auto">
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p> <p>
Draft your email for the CoE's office in the proper format
to communicate your semester fee payment details.
</p>
<a href="/form/"
class="rounded-md bg-primary-500 text-white font-bold p-2 m-auto w-max block">
GET STARTED
</a>
</article>

View File

@@ -2,7 +2,16 @@
export default { export default {
content: ['./src/**/*.{html,ts,js,svelte}'], content: ['./src/**/*.{html,ts,js,svelte}'],
theme: { theme: {
extend: {} extend: {
colors: {
back: {
500: '#fdfdfd',
},
primary: {
500: '#861224',
},
}
}
}, },
plugins: [] plugins: []
}; };