Skip to content

Commit

Permalink
fix: build deploy error
Browse files Browse the repository at this point in the history
  • Loading branch information
RupaakSrinivas committed May 1, 2024
1 parent a3b3137 commit c669d14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/* eslint-disable @next/next/no-img-element */
"use client";
import Image from "next/image";
import { Outfit } from "next/font/google";
// import { Outfit } from "next/font/google";
import Navbar from "../components/Navbar";
import Footer from "../components/Footer";
import Link from "next/link";

const outfit = Outfit({ subsets: ["latin"] });
// const outfit = Outfit({ subsets: ["latin"] });

export default function Home() {
return (
<div className={`w-full h-full bg-[#F8F8F8] ${outfit.className}`}>
<div className={`w-full h-full bg-[#F8F8F8] `}>
<Navbar />
<div
id="home"
Expand Down

0 comments on commit c669d14

Please sign in to comment.