diff --git a/frontend/src/App.vue b/frontend/src/App.vue
index e864195..2cd2e71 100644
--- a/frontend/src/App.vue
+++ b/frontend/src/App.vue
@@ -1,85 +1,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/main.css b/frontend/src/assets/main.css
index a69e41b..f268e80 100644
--- a/frontend/src/assets/main.css
+++ b/frontend/src/assets/main.css
@@ -1,10 +1,15 @@
-@import './base.css';
+/* @import './base.css'; */
@tailwind base;
@tailwind components;
@tailwind utilities;
+html {
+ @apply bg-gray-500;
+}
+
+/*
#app {
- max-width: 1280px;
+ max-width: 900px;
margin: 0 auto;
padding: 2rem;
font-weight: normal;
@@ -35,4 +40,4 @@ a,
grid-template-columns: 1fr 1fr;
padding: 0 2rem;
}
-}
+} */
diff --git a/frontend/src/inde.css b/frontend/src/inde.css
deleted file mode 100644
index bd6213e..0000000
--- a/frontend/src/inde.css
+++ /dev/null
@@ -1,3 +0,0 @@
-@tailwind base;
-@tailwind components;
-@tailwind utilities;
\ No newline at end of file
diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js
index 47539cf..ecac35d 100644
--- a/frontend/src/router/index.js
+++ b/frontend/src/router/index.js
@@ -6,16 +6,8 @@ const router = createRouter({
routes: [
{
path: '/',
- name: 'home',
- component: () => import('../views/HomeView.vue')
- },
- {
- path: '/about',
- name: 'about',
- // route level code-splitting
- // this generates a separate chunk (About.[hash].js) for this route
- // which is lazy-loaded when the route is visited.
- component: () => import('../views/AboutView.vue')
+ name: 'Inicio',
+ component: () => import('../views/InicioView.vue')
},
{
path: '/login',
@@ -28,4 +20,6 @@ const router = createRouter({
]
})
+
+
export default router
diff --git a/frontend/src/views/InicioView.vue b/frontend/src/views/InicioView.vue
new file mode 100644
index 0000000..4c122cd
--- /dev/null
+++ b/frontend/src/views/InicioView.vue
@@ -0,0 +1,9 @@
+
+
+
+ Inicio
+
+
+
\ No newline at end of file
diff --git a/frontend/src/views/LoginView.vue b/frontend/src/views/LoginView.vue
index 624319c..0a1021d 100644
--- a/frontend/src/views/LoginView.vue
+++ b/frontend/src/views/LoginView.vue
@@ -2,4 +2,25 @@
+
+
+
+
+
ChitChat
+
You have a new message!
+
+
+
+
+
+
+
+
diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js
index 0e1c520..d4301b4 100644
--- a/frontend/tailwind.config.js
+++ b/frontend/tailwind.config.js
@@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */
export default {
- content: ["./src/**/*.{html,js}"],
+ content: ["./src/**/*.{html,js,vue}"],
theme: {
extend: {},
},