Skip to content
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import '~/app/globals.css'

import type { Metadata } from 'next'

const TITLE = 'Splits Lite'
const TITLE = 'Splits Lite (Fancy Feature Branch)'
const DESCRIPTION = 'A minimal app for creating and distributing Splits'

const OG_IMAGE_SIZE = {
Expand Down Expand Up @@ -38,7 +38,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body>
<body className="bg-blue-300">
<App>{children}</App>
</body>
</html>
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const ExternalLink = ({ url, text }: { url: string; text: string }) => {
const LandingPage = () => {
return (
<div className="max-w-prose space-y-4">
<div className="text-4xl">Splits Lite</div>
<div className="text-4xl">Splits Lite (fancy-feature-branch)</div>
<p className="text-lg text-gray-600 dark:text-gray-400">
A minimal app for creating and distributing Splits. Connect your wallet to continue.
</p>
Expand Down