Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bade377

Browse files
committed
feat: add manifest.json TS generated
1 parent 9b4eb5d commit bade377

File tree

5 files changed

+65
-2
lines changed

5 files changed

+65
-2
lines changed

src/app/components/protos/hero-section.tsx

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,20 @@ import { Button } from '../ui/button';
191191

192192
/* eslint-disable */
193193

194+
/* eslint-disable */
195+
196+
/* eslint-disable */
197+
198+
/* eslint-disable */
199+
200+
/* eslint-disable */
201+
202+
/* eslint-disable */
203+
204+
/* eslint-disable */
205+
206+
/* eslint-disable */
207+
194208
function TypingAnimation() {
195209
const el = useRef(null);
196210

@@ -302,7 +316,7 @@ export default function HeroSection() {
302316
window.location.href = '/contact';
303317
}}
304318
>
305-
Hit me up
319+
Let's build something great
306320
</Button>
307321
</motion.div>
308322
</div>

src/app/components/reusables/code/code-block.tsx

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,36 @@ import CopyButton from './copy-code';
346346
/* eslint-disable */
347347
// @ts-nocheck
348348

349+
// react-syntax-highlighter has no types
350+
351+
/* eslint-disable */
352+
// @ts-nocheck
353+
354+
// react-syntax-highlighter has no types
355+
356+
/* eslint-disable */
357+
// @ts-nocheck
358+
359+
// react-syntax-highlighter has no types
360+
361+
/* eslint-disable */
362+
// @ts-nocheck
363+
364+
// react-syntax-highlighter has no types
365+
366+
/* eslint-disable */
367+
// @ts-nocheck
368+
369+
// react-syntax-highlighter has no types
370+
371+
/* eslint-disable */
372+
// @ts-nocheck
373+
374+
// react-syntax-highlighter has no types
375+
376+
/* eslint-disable */
377+
// @ts-nocheck
378+
349379
// react-syntax-highlighter has no types
350380
/* eslint-disable */
351381
// @ts-nocheck

src/app/favicon.ico

-36.5 KB
Binary file not shown.

src/app/manifest.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import type { MetadataRoute } from 'next';
2+
3+
export default function manifest(): MetadataRoute.Manifest {
4+
return {
5+
name: 'Ashgw',
6+
short_name: 'Ashgw',
7+
description: "AG's corner on the internet",
8+
start_url: '/',
9+
display: 'standalone',
10+
background_color: '#21001d',
11+
theme_color: '#21001d',
12+
icons: [
13+
{
14+
src: '/favicon.ico',
15+
sizes: 'any',
16+
type: 'image/x-icon',
17+
},
18+
],
19+
};
20+
}

src/app/opengraph-image.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { ImageResponse } from 'next/og';
22

3-
// Image metadata
43
export const alt = 'Ashgw';
54
export const size = {
65
width: 1200,

0 commit comments

Comments
 (0)