Skip to content

Commit 69bbbf4

Browse files
committed
fix: merge conflicts
1 parent 9149ce9 commit 69bbbf4

File tree

4 files changed

+14
-18
lines changed

4 files changed

+14
-18
lines changed

apps/web/app/layout.tsx

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
import type { Metadata } from "next";
2-
import { Figtree, Instrument_Serif, Manrope } from "next/font/google";
2+
import { Instrument_Serif, Manrope } from "next/font/google";
33
import "./globals.css";
44
import { Appbar } from "@/components/Appbar";
55
import { Providers } from "@/components/providers/Providers";
6-
import { Footer } from "@/components/Footer";
6+
import Footer from "@/components/landing/footer";
77

8-
const geistSans = localFont({
9-
src: "./fonts/GeistVF.woff",
10-
variable: "--font-geist-sans",
8+
const manrope = Manrope({
9+
subsets: ["latin"],
10+
variable: "--font-manrope",
11+
weight: ["300", "400", "500", "600", "700"],
1112
});
1213

13-
const geistMono = localFont({
14-
src: "./fonts/GeistMonoVF.woff",
15-
variable: "--font-geist-mono",
14+
const instrumental_serif = Instrument_Serif({
15+
subsets: ["latin"],
16+
variable: "--font-instrumental-serif",
17+
weight: ["400"],
1618
});
1719

1820
export const metadata: Metadata = {
@@ -36,7 +38,7 @@ export default function RootLayout({
3638
/>
3739
</head>
3840
<body
39-
className={`${geistSans.variable} ${geistMono.variable} min-h-screen bg-background font-sans antialiased`}
41+
className={`${manrope.variable} ${instrumental_serif.variable} min-h-screen bg-background font-sans antialiased`}
4042
>
4143
<Providers>
4244
<div className="relative flex min-h-screen flex-col">

apps/web/app/page.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export default function Home() {
99
<Hero />
1010
<Features />
1111
<FAQ />
12-
<Footer />
1312
</div>
1413
);
1514
}

apps/web/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
"react-hot-toast": "^2.5.1",
4242
"tailwind-merge": "^3.0.1",
4343
"tailwindcss": "^4.0.6",
44-
"tailwindcss-animate": "^1.0.7"
44+
"tailwindcss-animate": "^1.0.7",
45+
"motion": "^12.4.2"
4546
},
4647
"devDependencies": {
4748
"@repo/eslint-config": "*",

package.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,5 @@
1919
"workspaces": [
2020
"apps/*",
2121
"packages/*"
22-
],
23-
"dependencies": {
24-
"@phosphor-icons/react": "^2.1.7",
25-
"embla-carousel-autoplay": "^8.5.2",
26-
"motion": "^12.4.2",
27-
"next-themes": "^0.4.4"
28-
}
22+
]
2923
}

0 commit comments

Comments
 (0)