Skip to content

Commit

Permalink
Merge branch 'dev' into jsimj001/home-page-secondary-text
Browse files Browse the repository at this point in the history
  • Loading branch information
stanleylew5 authored Jan 31, 2025
2 parents ffa2b25 + 189bce6 commit bed0825
Show file tree
Hide file tree
Showing 7 changed files with 172 additions and 66 deletions.
122 changes: 61 additions & 61 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,20 @@
},
"dependencies": {
"@tanstack/react-query": "~5.53.3",
"lucide-react": "~0.417.0",
"next": "~14.2.10",
"lucide-react": "^0.417.0",
"next": "^14.2.10",
"react": "~18.3.1",
"react-dom": "~18.3.1"
"react-dom": "~18.3.1",
"react-icons": "^5.4.0"
},
"devDependencies": {
"@eslint/js": "~9.8.0",
"@tanstack/eslint-plugin-query": "~5.53.0",
"@types/node": "~22.1.0",
"@types/react": "~18.3.3",
"@types/react-dom": "~18.3.0",
"@typescript-eslint/eslint-plugin": "~8.0.0",
"@typescript-eslint/parser": "~8.0.0",
"@tanstack/eslint-plugin-query": "~5.53.0",
"autoprefixer": "~10.4.19",
"eslint": "~9.8.0",
"eslint-config-prettier": "~9.1.0",
Expand Down
Binary file added public/logo.webp
Binary file not shown.
2 changes: 2 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import "./globals.css";
import { Montserrat } from "next/font/google";
import Navigation from "@/components/Navigation";
import { ReactQueryClientProvider } from "@/utils/react-query";

const montserrat = Montserrat({ subsets: ["latin"] });
Expand All @@ -18,6 +19,7 @@ export default function RootLayout({ children }: LayoutProps) {
return (
<html lang="en">
<body className={montserrat.className}>
<Navigation />
<ReactQueryClientProvider>{children}</ReactQueryClientProvider>
</body>
</html>
Expand Down
Loading

0 comments on commit bed0825

Please sign in to comment.