- Created a global CSS file for consistent styling across the application. - Implemented the Explore, Home, Topics, and various user views with responsive design. - Added a Login view with OTP functionality and a Checkout view for order processing. - Developed a NotFound view for handling 404 errors. - Established a configuration file for Vite with Tailwind CSS integration.
7 lines
163 B
Vue
7 lines
163 B
Vue
<template>
|
|
<div class="p-8">
|
|
<h1 class="text-2xl font-bold mb-4">Profile Settings</h1>
|
|
<p class="text-slate-400">(Edit profile)</p>
|
|
</div>
|
|
</template>
|