5 Commits

Author SHA1 Message Date
51b013aa34 Merge version_3 into main
Merge version_3 into main
2026-03-07 18:10:30 +00:00
1217b4e047 Update src/app/styles/base.css 2026-03-07 18:10:26 +00:00
001cbc5a30 Update src/app/page.tsx 2026-03-07 18:10:26 +00:00
0c586a685f Update src/app/layout.tsx 2026-03-07 18:10:25 +00:00
22d2c69f82 Merge version_2 into main
Merge version_2 into main
2026-03-07 18:07:57 +00:00
3 changed files with 15 additions and 8 deletions

View File

@@ -1,9 +1,16 @@
import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Cinema Cafe & Restaurant - Best Cafe in Vijayawada", description: "Experience the best cafe and restaurant in Vijayawada with delicious food, cozy ambiance, and premium service. Open daily 10 AM - 11 PM."};
title: "Cinema Cafe & Restaurant - Best Cafe in Vijayawada", description: "Experience the best cafe and restaurant in Vijayawada with delicious food, cozy ambiance, and premium service. Open daily 10 AM - 11 PM."
};
export default function RootLayout({
children,
@@ -12,7 +19,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>
<body className={interTight.variable}>
{children}
<script

View File

@@ -15,13 +15,13 @@ import { Award, Heart, Leaf, PiggyBank, Coffee, Users, Zap, Utensils, Star, Cale
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="compact"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="outline"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-public-sans), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-public-sans), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}