diff --git a/.gitignore b/.gitignore
index 2432ddc..4a7f73a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,6 +22,3 @@ logs
.env
.env.*
!.env.example
-
-# Local settings
-.vscode/
diff --git a/app.vue b/app.vue
index d3a08ab..e9d3b90 100644
--- a/app.vue
+++ b/app.vue
@@ -1,9 +1,14 @@
-
-
-
-
-
+
+
\ No newline at end of file
diff --git a/components/Footer.vue b/components/Footer.vue
deleted file mode 100644
index 8084402..0000000
--- a/components/Footer.vue
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
-
-
-
diff --git a/components/Header.vue b/components/Header.vue
deleted file mode 100644
index 940ac03..0000000
--- a/components/Header.vue
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
diff --git a/nuxt.config.ts b/nuxt.config.ts
index ca82a71..cb193ba 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -3,10 +3,6 @@ export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: true },
modules: ['@nuxt/fonts', '@nuxt/image'],
- css: [
- '@/public/variables.css',
- '@/public/global.css'
- ],
app: {
head: {
title: 'Gorb - Open-Source Chat Platform',
diff --git a/pages/index.vue b/pages/index.vue
index f1da95c..8581fa5 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -4,13 +4,14 @@
Welcome to
GORB!
- The Open-Source and Federated
+ The Open-Source and Federated
Chat Platform!
Go to web client
IT DOESN'T EXIST YET
- BUT! Check out our Git to check on our progress!
+ BUT! Check out our Git to check on our
+ progress!
diff --git a/pages/source.vue b/pages/source.vue
deleted file mode 100644
index d5a3e1e..0000000
--- a/pages/source.vue
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/public/global.css b/public/global.css
deleted file mode 100644
index faf4c7c..0000000
--- a/public/global.css
+++ /dev/null
@@ -1,6 +0,0 @@
-.pansexual-gradient {
- background: linear-gradient(to right, #FE218C, #FED84E, #1CB3F7);
- background-clip: text;
- -webkit-text-fill-color: transparent;
- -webkit-background-clip: text;
-}
\ No newline at end of file
diff --git a/public/variables.css b/public/variables.css
deleted file mode 100644
index 62aff2d..0000000
--- a/public/variables.css
+++ /dev/null
@@ -1,31 +0,0 @@
-/* this file may want to be moved to a /styles folder, or /assets folder, or smth */
-:root {
- --text-colour: #141210;
- --background-colour: #f4ebe0;
- --background-secondary-colour: #efe4db;
-
- --primary-colour: #f97635;
- --secondary-colour: #cab39b;
- --tertiary-colour: #e8ac84;
- --accent-colour: #ed7a41;
-}
-
-@media (prefers-color-scheme: dark) {
- :root {
- --text-colour: #efedec;
- --background-colour: #201d19;
- --background-secondary-colour: #1d1915;
-
- --primary-colour: #f97635;
- --secondary-colour: #b35618;
- --tertiary-colour: #7c4018;
- --accent-colour: #cc764a;
- }
-}
-
-/* unchanging no matter the theme */
-:root {
- --text-on-primary-colour: #fff;
- --text-on-secondary-colour: #fff;
- --text-on-accent-colour: #fff;
-}
\ No newline at end of file