Skip to content

Commit

Permalink
feat(homepage): redesign wip (#4)
Browse files Browse the repository at this point in the history
* feat: buttons

---------

Co-authored-by: dargy <[email protected]>
  • Loading branch information
veryCrunchy and okdargy authored Feb 29, 2024
1 parent 33bc7a4 commit fe4b5d2
Show file tree
Hide file tree
Showing 19 changed files with 291 additions and 148 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CD-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
build-beta:
runs-on: self-hosted
defaults:
run:
run:
working-directory: ./beta
steps:
- uses: actions/checkout@v4
with:
path: 'beta'
with:
path: "beta"
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
10 changes: 10 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<script setup lang="ts">
useSeoMeta({
ogImage: "/favicon.webp ",
});
</script>
<template>
<div>
<NuxtPage />
</div>
</template>
<style>
body {
background-color: #e8a946;
}
</style>
22 changes: 11 additions & 11 deletions beta.config.cjs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module.exports = {
apps: [
{
name: "GreasyGang Beta Website",
port: "5001",
script: "./.output/server/index.mjs",
autorestart: true,
env: {
NODE_ENV: "production",
},
},
],
apps: [
{
name: "GreasyGang Beta Website",
port: "5001",
script: "./.output/server/index.mjs",
autorestart: true,
env: {
NODE_ENV: "production",
},
},
],
};
12 changes: 0 additions & 12 deletions drizzle.config.ts

This file was deleted.

3 changes: 2 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
css: [
"@/public/reset.css",
"@unocss/reset/normalize.css",
"@unocss/reset/sanitize/sanitize.css",
"@unocss/reset/sanitize/assets.css",
Expand All @@ -15,7 +16,7 @@ export default defineNuxtConfig({
"nuxt-graphql-client",
],
googleFonts: {
families: { "IBM Plex Sans": true },
families: { "IBM Plex Sans": true, "Bebas Neue": true, Poppins: true },
preload: true,
},
runtimeConfig: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"dev": "nuxt dev --host 127.0.0.1",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
Expand Down
Loading

0 comments on commit fe4b5d2

Please sign in to comment.