From 2293a504b1ec7af4da06feced00c282ccb1c9f4a Mon Sep 17 00:00:00 2001 From: sid <35936587+siddharth-shringarpure@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:09:50 +0100 Subject: [PATCH 1/3] =?UTF-8?q?=E2=9C=A8=20Updated=20layout.tsx=20to=20use?= =?UTF-8?q?=20Inter=20typeface?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/layout.tsx | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index d992499..980cf69 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,21 +1,26 @@ import type { Metadata } from 'next'; -import localFont from 'next/font/local'; +// import localFont from 'next/font/local'; import './globals.css'; -const geistSans = localFont({ - src: './fonts/GeistVF.woff', - variable: '--font-geist-sans', - weight: '100 900', -}); -const geistMono = localFont({ - src: './fonts/GeistMonoVF.woff', - variable: '--font-geist-mono', - weight: '100 900', -}); +import { Inter } from 'next/font/google'; +import './globals.css'; + +const inter = Inter({ subsets: ['latin'] }); + +// const geistSans = localFont({ +// src: './fonts/GeistVF.woff', +// variable: '--font-geist-sans', +// weight: '100 900', +// }); +// const geistMono = localFont({ +// src: './fonts/GeistMonoVF.woff', +// variable: '--font-geist-mono', +// weight: '100 900', +// }); export const metadata: Metadata = { - title: 'Create Next App', - description: 'Generated by create next app', + title: 'Ticket Chain', + description: 'A blockchain-based ticketing system.', }; export default function RootLayout({ @@ -24,12 +29,8 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - - - {children} - + + {children} ); } From c418aa9a1c65611b2e4a90a692868360cec42e98 Mon Sep 17 00:00:00 2001 From: sid <35936587+siddharth-shringarpure@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:23:13 +0100 Subject: [PATCH 2/3] =?UTF-8?q?=E2=9C=A8=20Update=20home=20page=20design?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Home.tsx | 41 ++++++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 17 deletions(-) diff --git a/app/Home.tsx b/app/Home.tsx index 10f3b4b..652b1f6 100644 --- a/app/Home.tsx +++ b/app/Home.tsx @@ -1,44 +1,51 @@ export default function Home() { return ( -
-
- Event Chain -

Ticket Chain

-