Skip to content

Commit 131de3f

Browse files
fix: updated the outdated packages + some ui changes
1 parent 56d7dad commit 131de3f

6 files changed

Lines changed: 1091 additions & 1044 deletions

File tree

app/layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type React from "react"
22
import type { Metadata } from "next"
3-
import { Inter } from "next/font/google"
3+
import { Geist } from "next/font/google"
44
import "./globals.css"
55
import { ThemeProvider } from "@/components/theme-provider"
66
import Navbar from "@/components/navbar"
@@ -9,7 +9,7 @@ import Script from 'next/script'
99
import { Analytics } from "@/components/analytics"
1010
import { SocialModal } from "@/components/social-modal"
1111

12-
const inter = Inter({ subsets: ["latin"] })
12+
const geist = Geist({ subsets: ["latin"] })
1313

1414
export 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 />

app/weekend-tech-grind/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

2929
const stats = [
3030
{

components/navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

next-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
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.

0 commit comments

Comments
 (0)