Skip to content

Commit 9eb276c

Browse files
committed
Update
1 parent de52d26 commit 9eb276c

File tree

6 files changed

+22
-92
lines changed

6 files changed

+22
-92
lines changed

src/app/favicon.ico

-25.3 KB
Binary file not shown.
19.2 KB
Binary file not shown.

src/app/globals.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@ a {
4040
color-scheme: dark;
4141
}
4242
}
43+
44+
h1{
45+
font-family: var(----departure-mono);
46+
}

src/app/layout.tsx

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,16 @@ const geistMono = localFont({
1313
weight: "100 900",
1414
});
1515

16+
17+
const departureMono = localFont({
18+
src: "./fonts/DepartureMono-Regular.woff",
19+
variable: "--departure-mono",
20+
weight: "100 900",
21+
});
22+
1623
export const metadata: Metadata = {
17-
title: "Create Next App",
18-
description: "Generated by create next app",
24+
title: "Convert Files - Secure & Fast",
25+
description: "Fast and secure file converter that transforms any file type into compatible formats directly on your device. Powered by WebAssembly, your files stay safe as nothing is uploaded to a server. Enjoy hassle-free, offline file conversions tool that keeps your data private.",
1926
};
2027

2128
export default function RootLayout({
@@ -25,7 +32,7 @@ export default function RootLayout({
2532
}>) {
2633
return (
2734
<html lang="en">
28-
<body className={`${geistSans.variable} ${geistMono.variable}`}>
35+
<body className={`${departureMono.variable} ${geistSans.variable} ${geistMono.variable} `}>
2936
{children}
3037
</body>
3138
</html>

src/app/page.module.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,8 @@ a.secondary {
163163
filter: invert();
164164
}
165165
}
166+
167+
168+
#heading{
169+
font-family: var(----departure-mono);
170+
}

src/app/page.tsx

Lines changed: 3 additions & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,9 @@
1-
import Image from "next/image";
21
import styles from "./page.module.css";
32

43
export default function Home() {
54
return (
6-
<div className={styles.page}>
7-
<main className={styles.main}>
8-
<Image
9-
className={styles.logo}
10-
src="https://nextjs.org/icons/next.svg"
11-
alt="Next.js logo"
12-
width={180}
13-
height={38}
14-
priority
15-
/>
16-
<ol>
17-
<li>
18-
Get started by editing <code>src/app/page.tsx</code>.
19-
</li>
20-
<li>Save and see your changes instantly.</li>
21-
</ol>
22-
23-
<div className={styles.ctas}>
24-
<a
25-
className={styles.primary}
26-
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
27-
target="_blank"
28-
rel="noopener noreferrer"
29-
>
30-
<Image
31-
className={styles.logo}
32-
src="https://nextjs.org/icons/vercel.svg"
33-
alt="Vercel logomark"
34-
width={20}
35-
height={20}
36-
/>
37-
Deploy now
38-
</a>
39-
<a
40-
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
41-
target="_blank"
42-
rel="noopener noreferrer"
43-
className={styles.secondary}
44-
>
45-
Read our docs
46-
</a>
47-
</div>
48-
</main>
49-
<footer className={styles.footer}>
50-
<a
51-
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
52-
target="_blank"
53-
rel="noopener noreferrer"
54-
>
55-
<Image
56-
aria-hidden
57-
src="https://nextjs.org/icons/file.svg"
58-
alt="File icon"
59-
width={16}
60-
height={16}
61-
/>
62-
Learn
63-
</a>
64-
<a
65-
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
66-
target="_blank"
67-
rel="noopener noreferrer"
68-
>
69-
<Image
70-
aria-hidden
71-
src="https://nextjs.org/icons/window.svg"
72-
alt="Window icon"
73-
width={16}
74-
height={16}
75-
/>
76-
Examples
77-
</a>
78-
<a
79-
href="https://nextjs.org?utm_source=create-next-app&utm_medium=appdir-template&utm_campaign=create-next-app"
80-
target="_blank"
81-
rel="noopener noreferrer"
82-
>
83-
<Image
84-
aria-hidden
85-
src="https://nextjs.org/icons/globe.svg"
86-
alt="Globe icon"
87-
width={16}
88-
height={16}
89-
/>
90-
Go to nextjs.org →
91-
</a>
92-
</footer>
93-
</div>
5+
<>
6+
<h1 id={styles.heading}>Hello Convert Files</h1>
7+
</>
948
);
959
}

0 commit comments

Comments
 (0)