This commit is contained in:
mstfyldz
2026-07-07 12:00:32 +03:00
parent 22015bdbd2
commit 02fb682f63
5 changed files with 101 additions and 0 deletions
+2
View File
@@ -15,6 +15,7 @@ export default async function SettingsPage() {
const restaurantName = settings['restaurant_name'] || 'Moy Beach'
const location = settings['location'] || 'Akyaka · Muğla'
const logoUrl = settings['logo_url'] || ''
const googleReviewUrl = settings['google_review_url'] || ''
return (
<div className="space-y-6">
@@ -25,6 +26,7 @@ export default async function SettingsPage() {
defaultRestaurantName={restaurantName}
defaultLocation={location}
defaultLogoUrl={logoUrl}
defaultGoogleReviewUrl={googleReviewUrl}
/>
</div>
</div>