File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import type React from "react"
22import type { Metadata } from "next"
3- import { Inter } from "next/font/google"
3+ import { Geist } from "next/font/google"
44import "./globals.css"
55import { ThemeProvider } from "@/components/theme-provider"
66import Navbar from "@/components/navbar"
@@ -9,7 +9,7 @@ import Script from 'next/script'
99import { Analytics } from "@/components/analytics"
1010import { SocialModal } from "@/components/social-modal"
1111
12- const inter = Inter ( { subsets : [ "latin" ] } )
12+ const geist = Geist ( { subsets : [ "latin" ] } )
1313
1414export const metadata : Metadata = {
1515 metadataBase : new URL ( 'https://devweekends.com' ) ,
@@ -108,7 +108,7 @@ export default function RootLayout({
108108 } }
109109 />
110110 </ head >
111- < body className = { inter . className } >
111+ < body className = { geist . className } >
112112 < ThemeProvider attribute = "class" defaultTheme = "system" enableSystem disableTransitionOnChange >
113113 < div className = "flex min-h-screen flex-col" >
114114 < Navbar />
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import {
2424 Zap ,
2525} from "lucide-react"
2626
27- const APPLICATION_URL = "https://forms.gle/YOUR_FORM_ID "
27+ const APPLICATION_URL = "https://docs.google.com/forms/d/e/1FAIpQLSfDzZHzI9nFGW22YxuuwK88dNCoT3imHKHsY2mtcVmOSWl5sg/viewform "
2828
2929const stats = [
3030 {
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export default function Navbar() {
4141 < div className = "flex items-center justify-between py-4" >
4242 < div className = "flex items-center" >
4343 < Link href = "/our-story" className = "flex items-center space-x-2" >
44- < span className = "sm:inline-block text-xl font-black tracking-tight " >
44+ < span className = "sm:inline-block text-[1.1rem] sm:text-[1.2rem] font-bold tracking-[-0.015em] leading-none " >
4545 Dev Weekends
4646 </ span >
4747 </ Link >
Original file line number Diff line number Diff line change 11/// <reference types="next" />
22/// <reference types="next/image-types/global" />
3+ /// <reference path="./.next/types/routes.d.ts" />
34
45// NOTE: This file should not be edited
56// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
You can’t perform that action at this time.
0 commit comments