Format everything
This commit is contained in:
@@ -7,48 +7,46 @@ const { openInPopup } = useUserSession();
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<UContainer
|
<UContainer
|
||||||
class="flex flex-col items-center gap-4 justify-center w-full p-16"
|
class="flex flex-col items-center gap-4 justify-center w-full p-16"
|
||||||
>
|
>
|
||||||
<UCard class="max-w-sm grid gap-6 justify-center items-center">
|
<UCard class="max-w-sm grid gap-6 justify-center items-center">
|
||||||
<div class="flex flex-col gap-10 items-center justify-center">
|
<div class="flex flex-col gap-10 items-center justify-center">
|
||||||
<div class="flex gap-2 items-center">
|
<div class="flex gap-2 items-center">
|
||||||
<NuxtImg src="/ghostwriter-logo.png" class="size-9" />
|
<NuxtImg src="/ghostwriter-logo.png" class="size-9" />
|
||||||
<div
|
<div class="font-bold text-xl tracking-tight font-fira-code">
|
||||||
class="font-bold text-xl tracking-tight font-fira-code"
|
Ghostwriter
|
||||||
>
|
</div>
|
||||||
Ghostwriter
|
</div>
|
||||||
</div>
|
<div class="grid gap-2">
|
||||||
</div>
|
<div class="text-center text-2xl font-bold">
|
||||||
<div class="grid gap-2">
|
Sign in to your account.
|
||||||
<div class="text-center text-2xl font-bold">
|
</div>
|
||||||
Sign in to your account.
|
<div class="text-center">
|
||||||
</div>
|
Connect with Strava to automatically add personalized titles and
|
||||||
<div class="text-center">
|
descriptions to your activities.
|
||||||
Connect with Strava to automatically add personalized
|
</div>
|
||||||
titles and descriptions to your activities.
|
</div>
|
||||||
</div>
|
<div
|
||||||
</div>
|
aria-role="button"
|
||||||
<div
|
@click="openInPopup('/auth/strava')"
|
||||||
aria-role="button"
|
class="cursor-pointer w-full max-w-[200px]"
|
||||||
@click="openInPopup('/auth/strava')"
|
>
|
||||||
class="cursor-pointer w-full max-w-[200px]"
|
<NuxtImg
|
||||||
>
|
src="/images/connect-with-strava.svg"
|
||||||
<NuxtImg
|
class="w-full max-w-[200px]"
|
||||||
src="/images/connect-with-strava.svg"
|
/>
|
||||||
class="w-full max-w-[200px]"
|
</div>
|
||||||
/>
|
<div class="text-sm text-gray-500">
|
||||||
</div>
|
By signing in, you agree to our
|
||||||
<div class="text-sm text-gray-500">
|
<NuxtLink
|
||||||
By signing in, you agree to our
|
href="https://www.ghostwriter.rocks/privacy"
|
||||||
<NuxtLink
|
class="text-primary-500"
|
||||||
href="https://www.ghostwriter.rocks/privacy"
|
>Privacy Policy</NuxtLink
|
||||||
class="text-primary-500"
|
>.
|
||||||
>Privacy Policy</NuxtLink
|
</div>
|
||||||
>.
|
</div>
|
||||||
</div>
|
</UCard>
|
||||||
</div>
|
</UContainer>
|
||||||
</UCard>
|
<AppFooter />
|
||||||
</UContainer>
|
|
||||||
<AppFooter />
|
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -1 +1,19 @@
|
|||||||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
{
|
||||||
|
"name": "",
|
||||||
|
"short_name": "",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#ffffff",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
export default eventHandler(() => 'pong')
|
export default eventHandler(() => "pong");
|
||||||
|
|||||||
@@ -44,12 +44,8 @@
|
|||||||
"name": "preferences_user_id_users_id_fk",
|
"name": "preferences_user_id_users_id_fk",
|
||||||
"tableFrom": "preferences",
|
"tableFrom": "preferences",
|
||||||
"tableTo": "users",
|
"tableTo": "users",
|
||||||
"columnsFrom": [
|
"columnsFrom": ["user_id"],
|
||||||
"user_id"
|
"columnsTo": ["id"],
|
||||||
],
|
|
||||||
"columnsTo": [
|
|
||||||
"id"
|
|
||||||
],
|
|
||||||
"onDelete": "cascade",
|
"onDelete": "cascade",
|
||||||
"onUpdate": "no action"
|
"onUpdate": "no action"
|
||||||
}
|
}
|
||||||
@@ -59,9 +55,7 @@
|
|||||||
"preferences_user_id_unique": {
|
"preferences_user_id_unique": {
|
||||||
"name": "preferences_user_id_unique",
|
"name": "preferences_user_id_unique",
|
||||||
"nullsNotDistinct": false,
|
"nullsNotDistinct": false,
|
||||||
"columns": [
|
"columns": ["user_id"]
|
||||||
"user_id"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"policies": {},
|
"policies": {},
|
||||||
@@ -121,12 +115,8 @@
|
|||||||
"name": "tokens_user_id_users_id_fk",
|
"name": "tokens_user_id_users_id_fk",
|
||||||
"tableFrom": "tokens",
|
"tableFrom": "tokens",
|
||||||
"tableTo": "users",
|
"tableTo": "users",
|
||||||
"columnsFrom": [
|
"columnsFrom": ["user_id"],
|
||||||
"user_id"
|
"columnsTo": ["id"],
|
||||||
],
|
|
||||||
"columnsTo": [
|
|
||||||
"id"
|
|
||||||
],
|
|
||||||
"onDelete": "cascade",
|
"onDelete": "cascade",
|
||||||
"onUpdate": "no action"
|
"onUpdate": "no action"
|
||||||
}
|
}
|
||||||
@@ -136,9 +126,7 @@
|
|||||||
"tokens_user_id_unique": {
|
"tokens_user_id_unique": {
|
||||||
"name": "tokens_user_id_unique",
|
"name": "tokens_user_id_unique",
|
||||||
"nullsNotDistinct": false,
|
"nullsNotDistinct": false,
|
||||||
"columns": [
|
"columns": ["user_id"]
|
||||||
"user_id"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"policies": {},
|
"policies": {},
|
||||||
@@ -219,4 +207,4 @@
|
|||||||
"schemas": {},
|
"schemas": {},
|
||||||
"tables": {}
|
"tables": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,4 +10,4 @@
|
|||||||
"breakpoints": true
|
"breakpoints": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user