From ea3b5b5fd13cf2a624404a1962884f7b0df7ff85 Mon Sep 17 00:00:00 2001 From: Viswamedha Nalabotu Date: Sat, 17 Jan 2026 21:17:43 +0000 Subject: [PATCH] Added basic app --- src/App.vue | 0 src/css/styles.css | 56 +++++++++++++++++++++++++++++++++++++++++++++ src/main.ts | 15 ++++++++++++ src/router/index.ts | 8 +++++++ 4 files changed, 79 insertions(+) create mode 100644 src/App.vue create mode 100644 src/css/styles.css create mode 100644 src/main.ts create mode 100644 src/router/index.ts diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/css/styles.css b/src/css/styles.css new file mode 100644 index 0000000..f0af2dc --- /dev/null +++ b/src/css/styles.css @@ -0,0 +1,56 @@ +html { + -webkit-text-size-adjust: 100%; + font-family: + ui-sans-serif, + system-ui, + -apple-system, + BlinkMacSystemFont, + 'Segoe UI', + Roboto, + 'Helvetica Neue', + Arial, + 'Noto Sans', + sans-serif, + 'Apple Color Emoji', + 'Segoe UI Emoji', + 'Segoe UI Symbol', + 'Noto Color Emoji'; + line-height: 1.5; + tab-size: 4; + scroll-behavior: smooth; +} +body { + font-family: inherit; + line-height: inherit; + margin: 0; + background: #0b1220; + color: #e5e7eb; +} +h1, +h2, +p, +pre { + margin: 0; +} +*, +::before, +::after { + box-sizing: border-box; + border-width: 0; + border-style: solid; + border-color: currentColor; +} +h1, +h2 { + font-size: inherit; + font-weight: inherit; +} +a { + color: inherit; + text-decoration: inherit; +} +pre { + font-family: + ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', + monospace; +} diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..ff2277d --- /dev/null +++ b/src/main.ts @@ -0,0 +1,15 @@ +import './css/styles.css' +import 'ant-design-vue/dist/reset.css' + +import { createApp } from 'vue' +import { createPinia } from 'pinia' + +import App from './App.vue' +import router from './router' + +const app = createApp(App) + +app.use(createPinia()) +app.use(router) + +app.mount('#app') diff --git a/src/router/index.ts b/src/router/index.ts new file mode 100644 index 0000000..a3623b0 --- /dev/null +++ b/src/router/index.ts @@ -0,0 +1,8 @@ +import { createRouter, createWebHistory } from 'vue-router' + +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes: [], +}) + +export default router