Compare commits

...

4 Commits

Author SHA1 Message Date
6188e0012a style: fix leaflet control overlap
All checks were successful
/ Build (push) Successful in 35s
2024-09-03 08:45:22 +03:00
cea91dbf97 style: fix input element sizing 2024-09-03 08:41:22 +03:00
aaaa2cf597 chore: add url to readme
All checks were successful
/ Build (push) Successful in 36s
2024-08-28 19:16:12 +03:00
f65596963f chore: update urls
All checks were successful
/ Build (push) Successful in 35s
2024-08-28 19:09:50 +03:00
5 changed files with 8 additions and 6 deletions

View File

@ -1 +1,3 @@
# KONULU KONUM # KONULU KONUM
https://konulukonum.com

View File

@ -10,5 +10,5 @@ export default defineConfig({
applyBaseStyles: false applyBaseStyles: false
})], })],
output: "static", output: "static",
site: devMode ? "http://localhost:4321" : "https://konulukonum.log101.dev" site: devMode ? "http://localhost:4321" : "https://konulukonum.com"
}); });

View File

@ -12,10 +12,10 @@ import "toastify-js/src/toastify.css"
<link rel='icon' type='image/jpg' href='/konulu-konum-logo.jpg' /> <link rel='icon' type='image/jpg' href='/konulu-konum-logo.jpg' />
<meta property='og:title' content='Konulu Konum' /> <meta property='og:title' content='Konulu Konum' />
<meta property='og:description' content='Sevdiklerinizi şaşırtın!' /> <meta property='og:description' content='Sevdiklerinizi şaşırtın!' />
<meta property='og:url' content='https://konulukonum.log101.dev' /> <meta property='og:url' content='https://konulukonum.com' />
<meta <meta
property='og:image' property='og:image'
content='https://konulukonum.log101.dev/konulu-konum-logo.jpg' content='https://konulukonum.com/konulu-konum-logo.jpg'
/> />
<meta name='twitter:card' content='summary' /> <meta name='twitter:card' content='summary' />
<meta name='generator' content={Astro.generator} /> <meta name='generator' content={Astro.generator} />

View File

@ -36,12 +36,12 @@ const backendUrl = import.meta.env.PUBLIC_BACKEND_URL
<p class='leading-7 [&:not(:first-child)]:mt-6 text-2xl'> <p class='leading-7 [&:not(:first-child)]:mt-6 text-2xl'>
Bir fotoğraf seçin. Bir fotoğraf seçin.
</p> </p>
<div class='grid w-full max-w-sm items-center gap-1.5 mt-4'> <div class='grid items-center gap-1.5 mt-4'>
<input <input
type='file' type='file'
name='selected-photo' name='selected-photo'
id='photo-selector' id='photo-selector'
class='p-2 border border-gray rounded-lg file:bg-inherit file:border-0' class='flex w-full p-2 border border-gray rounded-lg file:bg-inherit file:border-0'
required required
/> />
<p class='px-2 text-lg text-muted-foreground'> <p class='px-2 text-lg text-muted-foreground'>

View File

@ -197,7 +197,7 @@ const currentLocationControl = new CurrentLocationControl({
position: "bottomleft", position: "bottomleft",
}) })
const radiusControl = new RadiusControl({ position: "bottomright" }) const radiusControl = new RadiusControl({ position: "topright" })
askPermissionControl.addTo(map) askPermissionControl.addTo(map)