12 Commits

Author SHA1 Message Date
faea94b580 Merge version_4 into main
Merge version_4 into main
2026-06-07 12:09:05 +00:00
2d4586f3a8 Update theme fonts 2026-06-07 12:08:59 +00:00
bf573d36d2 Update theme fonts 2026-06-07 12:08:58 +00:00
8b308cd90d Merge version_4 into main
Merge version_4 into main
2026-06-07 12:08:50 +00:00
77cb568062 Update theme fonts 2026-06-07 12:08:47 +00:00
2e79c71394 Update theme fonts 2026-06-07 12:08:46 +00:00
ccb4dfaa5b Merge version_4 into main
Merge version_4 into main
2026-06-07 12:08:17 +00:00
2bcac58959 Update theme colors 2026-06-07 12:08:14 +00:00
e232df9470 Merge version_3 into main
Merge version_3 into main
2026-06-07 12:08:01 +00:00
edbface48b Switch to version 2: added simulate_user_activity.js 2026-06-07 12:05:53 +00:00
827f463f01 Switch to version 1: remove simulate_user_activity.js 2026-06-07 12:05:50 +00:00
74674d4b37 Merge version_2 into main
Merge version_2 into main
2026-06-07 12:04:44 +00:00
3 changed files with 13 additions and 15 deletions

View File

@@ -6,23 +6,23 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
import { Poppins } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: 'ItineraryGenie: AI-Powered Spreadsheet Planner & Reservation System',
description: 'An intelligent spreadsheet planner and reservation system leveraging custom algorithms (QuickSort, Binary Search, Hash Maps) and Gemini 2.5 Flash API for efficient itinerary and budget management, designed for academic and personal projects.',
};
const poppins = Poppins({
variable: "--font-poppins",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -31,9 +31,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${poppins.variable} antialiased`}>
<Tag />
{children}
<script

View File

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

View File

@@ -18,7 +18,7 @@
--secondary-cta: #efe7dd;
--secondary-cta-text: #2b180a;
--accent: #94877c;
--background-accent: #afa094;
--background-accent: #969db0;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);