diff --git a/src/app/(app)/info/page.tsx b/src/app/(app)/info/page.tsx index f9d5da8..16e45ea 100644 --- a/src/app/(app)/info/page.tsx +++ b/src/app/(app)/info/page.tsx @@ -3,10 +3,10 @@ export default function InfoPage() { return (
-

+

Beverage Consumption Info!

-

+

Learn what's best for your body and how to earn points and win! Making informed drink choices supports hydration, energy regulation, and overall health. Below are basic guidelines based on established public diff --git a/src/app/(app)/layout.tsx b/src/app/(app)/layout.tsx index 6e1304a..f0ee87f 100644 --- a/src/app/(app)/layout.tsx +++ b/src/app/(app)/layout.tsx @@ -13,9 +13,9 @@ export default function RootLayout({ }>) { const { isMobile, isSafari } = useDevice(); return ( -

+
{!isMobile && !isSafari ? : null} -
+
Drink Happy Logo Image {children}
diff --git a/src/lib/css/globals.css b/src/lib/css/globals.css index 34bc4de..5ada454 100644 --- a/src/lib/css/globals.css +++ b/src/lib/css/globals.css @@ -19,3 +19,13 @@ body { font-family: Arial, Helvetica, sans-serif; } + +.bg-img { + /* Repeat Background Image on the y axis */ + background-repeat: repeat-y; + + background-size: cover; + background-position: center; + height: 100vh; + @apply dark:bg-[url('/darkmodebackground.png')] bg-[url('/lightmodebackground.png')]; +} \ No newline at end of file