fix: add viewport meta tag to root layout head to enable proper responsive rendering on mobile viewports

This commit is contained in:
Rio
2026-06-18 15:26:52 +07:00
parent 3993952202
commit 2cadcacc6c
+1
View File
@@ -95,6 +95,7 @@ export default async function RootLayout({
return ( return (
<html lang="id"> <html lang="id">
<head> <head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style dangerouslySetInnerHTML={{ <style dangerouslySetInnerHTML={{
__html: themeVariables __html: themeVariables
}} /> }} />