diff --git a/assets/logo-w-shadow.png b/assets/logo-w-shadow.png new file mode 100644 index 0000000..85245fe Binary files /dev/null and b/assets/logo-w-shadow.png differ diff --git a/content/products/solar-network.mdx b/content/products/solar-network.mdx index 91a2049..53b9856 100644 --- a/content/products/solar-network.mdx +++ b/content/products/solar-network.mdx @@ -1,6 +1,24 @@ --- thumbnail: /thumbnails/products/solar-network.webp title: Solar Network -description: Solar Network is Solsynth LLC's core product in the internet. +description: Your all-in-one platform for building and connecting communities. url: https://lian.solsynth.dev --- + +Solar Network is an innovative platform that seamlessly integrates social interactions, chat, and voice calls into a single, cohesive experience. With Solar Network, you can effortlessly build and manage your own community. + +## Key Features + +- Social Integration: Connect and engage with others through a comprehensive social platform that brings together various forms of interaction. +- Chat: Enjoy real-time messaging with individuals and groups, making communication smooth and efficient. +- Voice Calls: Experience crystal-clear voice calls, enabling you to connect on a deeper level with your community. + +## Why Choose Solar Network? + +- User-Friendly: Designed with simplicity in mind, making it easy for anyone to create and manage their community. +- All-in-One Solution: Combines essential communication tools into one platform, eliminating the need for multiple apps. +- Customizable: Tailor the platform to suit your community’s unique needs and preferences. + +Join Solar Network today and start building your community with ease! + +Feel free to adjust any details to better fit your vision for the product. diff --git a/layouts/default.vue b/layouts/default.vue index 15ba9b7..768a2b7 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -1,15 +1,15 @@ diff --git a/nuxt.config.ts b/nuxt.config.ts index 24289a0..d1e3a41 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -3,6 +3,7 @@ import vuetify, { transformAssetUrls } from "vite-plugin-vuetify" // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ devtools: { enabled: true }, + app: { head: { title: "Solsynth LLC", @@ -10,6 +11,7 @@ export default defineNuxtConfig({ link: [{ rel: "icon", type: "image/png", href: "/favicon.png" }], }, }, + content: { api: { baseURL: "/api/content", @@ -18,9 +20,11 @@ export default defineNuxtConfig({ theme: "github-dark", }, }, + build: { transpile: ["vuetify"], }, + modules: [ "@unocss/nuxt", "@nuxt/content", @@ -33,6 +37,7 @@ export default defineNuxtConfig({ }, //... ], + vite: { vue: { template: { @@ -40,4 +45,6 @@ export default defineNuxtConfig({ }, }, }, -}) + + compatibilityDate: "2024-08-10", +}) \ No newline at end of file diff --git a/package.json b/package.json index 5284d7c..914960f 100644 --- a/package.json +++ b/package.json @@ -10,17 +10,18 @@ "postinstall": "nuxt prepare" }, "dependencies": { - "@fontsource/roboto": "^5.0.13", + "@fontsource/roboto": "^5.0.14", "@mdi/font": "^7.4.47", - "@nuxt/content": "^2.13.0", + "@nuxt/content": "^2.13.2", "@nuxt/image": "^1.7.0", - "nuxt": "^3.12.2", + "nuxt": "^3.12.4", "vue": "latest" }, "devDependencies": { - "@unocss/nuxt": "^0.61.0", - "@unocss/reset": "^0.61.0", - "vite-plugin-vuetify": "^2.0.3", - "vuetify": "^3.6.10" + "@unocss/nuxt": "^0.61.9", + "@unocss/preset-typography": "^0.61.9", + "@unocss/reset": "^0.61.9", + "vite-plugin-vuetify": "^2.0.4", + "vuetify": "^3.6.14" } } diff --git a/pages/posts/[id].vue b/pages/posts/[id].vue new file mode 100644 index 0000000..f27d5d8 --- /dev/null +++ b/pages/posts/[id].vue @@ -0,0 +1,7 @@ + + + diff --git a/pages/products/[...slug].vue b/pages/products/[...slug].vue index 684fc8c..c5922bc 100644 --- a/pages/products/[...slug].vue +++ b/pages/products/[...slug].vue @@ -1,19 +1,21 @@ diff --git a/public/favicon-solian.png b/public/favicon-solian.png new file mode 100644 index 0000000..df649d8 Binary files /dev/null and b/public/favicon-solian.png differ diff --git a/public/favicon.png b/public/favicon.png old mode 100755 new mode 100644 index 34aecb6..85245fe Binary files a/public/favicon.png and b/public/favicon.png differ diff --git a/uno.config.ts b/uno.config.ts index e5a90eb..8bc6e13 100644 --- a/uno.config.ts +++ b/uno.config.ts @@ -1,3 +1,5 @@ -import { defineConfig } from "unocss" +import { defineConfig, presetAttributify, presetTypography, presetUno } from "unocss" -export default defineConfig({}) +export default defineConfig({ + presets: [presetAttributify(), presetUno(), presetTypography()], +})