Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 51b013aa34 | |||
| 1217b4e047 | |||
| 001cbc5a30 | |||
| 0c586a685f | |||
| 22d2c69f82 |
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user