Skip to content

Commit fe7372d

Browse files
committed
chore: fix links, and minor updates
1 parent a7205c0 commit fe7372d

File tree

10 files changed

+107
-16
lines changed

10 files changed

+107
-16
lines changed

web/components/Hero.tsx

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,24 @@ export default function Hero() {
1818
Use our VSCode and Jetbrains snippets extension
1919
</div>
2020
<div className="mt-8 grid grid-cols-1 gap-5 md:grid-cols-2">
21-
<Link href="#">
22-
<a className="w-48 rounded-md bg-gradient-to-r from-[#000A67] to-[#004E92] py-3 text-xl">
23-
Get started
24-
</a>
25-
</Link>
26-
<Link href="#">
27-
<a className="w-48 rounded-md bg-gradient-to-r from-[#232526] to-[#313334] py-3 text-xl">
28-
View GitHub
29-
</a>
30-
</Link>
21+
<a
22+
href="https://marketplace.visualstudio.com/items?itemName=AvneeshAgarwal.react-nextjs-snippets"
23+
target="_blank"
24+
rel="noopener noreferrer"
25+
className="w-48 rounded-md bg-gradient-to-r from-[#000A67] to-[#004E92] py-3 text-xl"
26+
>
27+
Get started
28+
</a>
29+
<a
30+
href="https://github.com/avneesh0612/react-nextjs-snippets"
31+
target="_blank"
32+
rel="noopener noreferrer"
33+
className="w-48 rounded-md bg-gradient-to-r from-[#232526] to-[#313334] py-3 text-xl"
34+
>
35+
View GitHub
36+
</a>
3137
</div>
3238
</div>
3339
</div>
3440
)
35-
}
41+
}

web/components/Installation.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react'
2-
import vscodelogo from '../public/vscode.png'
3-
import jetbrainslogo from '../public/jetbrains.png'
2+
import vscodelogo from '../public/vscode.svg'
3+
import jetbrainslogo from '../public/jetbrains.svg'
44
import InstallCard from './InstallCard'
55

66
export default function Installation() {
@@ -15,7 +15,7 @@ export default function Installation() {
1515
<InstallCard
1616
image={vscodelogo}
1717
enabled={true}
18-
link="#"
18+
link="https://marketplace.visualstudio.com/items?itemName=AvneeshAgarwal.react-nextjs-snippets"
1919
name="Visual Studio Code"
2020
/>
2121
<InstallCard

web/components/Navbar.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,20 @@ export default function Navbar() {
77
return (
88
<div className="absolute top-0 flex h-20 w-full items-center justify-between p-7 xl:p-0">
99
<div className="flex items-center">
10-
<Image src={logo} height={48} width={48} className="rounded-md" />
10+
<Image
11+
src={logo}
12+
height={48}
13+
width={48}
14+
className="cursor-pointer rounded-md"
15+
/>
1116
<span className="ml-5 text-lg font-medium">
1217
React &amp; Next.js Snippets
1318
</span>
1419
</div>
1520
<a
1621
href="https://github.com/avneesh0612/react-nextjs-snippets"
1722
target="_blank"
23+
className="cursor-pointer"
1824
>
1925
<Image src={githubLogo} height={30} width={30} />
2026
</a>

web/pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function MyApp({ Component, pageProps }: AppProps) {
3333
}}
3434
/>
3535
<Head>
36-
<link rel="icon" type="image/png" href="/assests/logo.png" />
36+
<link rel="icon" type="image/png" href="/assests/logo.ico" />
3737
</Head>
3838
<Component {...pageProps} />
3939
</>

web/public/assests/logo.ico

4.19 KB
Binary file not shown.

web/public/assests/logo.png

-29.7 KB
Binary file not shown.

web/public/jetbrains.png

-10.9 KB
Binary file not shown.

web/public/jetbrains.svg

Lines changed: 38 additions & 0 deletions
Loading

web/public/vscode.png

-6.92 KB
Binary file not shown.

web/public/vscode.svg

Lines changed: 41 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)