forked from t3-oss/create-t3-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from yocxo/srizvi/issue232
chore: optimize static files #232
- Loading branch information
Showing
73 changed files
with
118 additions
and
235 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import type { MetadataRoute } from 'next'; | ||
|
||
export default function manifest(): MetadataRoute.Manifest { | ||
return { | ||
name: 'cocoGPT', | ||
short_name: 'cocoGPT', | ||
icons: [ | ||
{ | ||
src: '/icon3.png', | ||
sizes: '192x192', | ||
type: 'image/png', | ||
}, | ||
{ | ||
src: '/icon4.png', | ||
sizes: '512x512', | ||
type: 'image/png', | ||
}, | ||
], | ||
theme_color: '#f5c000', | ||
background_color: '#f5c000', | ||
display: 'standalone', | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import type { MetadataRoute } from 'next'; | ||
|
||
export default function manifest(): MetadataRoute.Manifest { | ||
return { | ||
name: 'Mai', | ||
short_name: 'Mai', | ||
icons: [ | ||
{ | ||
src: '/icon3.png', | ||
sizes: '192x192', | ||
type: 'image/png', | ||
}, | ||
{ | ||
src: '/icon4.png', | ||
sizes: '512x512', | ||
type: 'image/png', | ||
}, | ||
], | ||
theme_color: '#09090b', | ||
background_color: '#09090b', | ||
display: 'standalone', | ||
}; | ||
} |
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,85 @@ | ||
import type { StaticImageData } from 'next/image'; | ||
|
||
import image1 from '#/images/1.jpg'; | ||
import image2 from '#/images/2.jpg'; | ||
import image3 from '#/images/3.jpg'; | ||
import image4 from '#/images/4.jpg'; | ||
import image5 from '#/images/5.jpg'; | ||
import image6 from '#/images/6.jpg'; | ||
import image7 from '#/images/7.jpg'; | ||
import image8 from '#/images/8.jpg'; | ||
import image9 from '#/images/9.jpg'; | ||
import image10 from '#/images/10.jpg'; | ||
import image11 from '#/images/11.jpg'; | ||
import image12 from '#/images/12.jpg'; | ||
import image13 from '#/images/13.jpg'; | ||
import image16 from '#/images/16.jpg'; | ||
import image17 from '#/images/17.jpg'; | ||
|
||
export interface Screen { | ||
title: string; | ||
thumbnail: string; | ||
thumbnail: StaticImageData; | ||
} | ||
|
||
export const screens: Screen[] = [ | ||
{ | ||
title: 'Increased engagement', | ||
thumbnail: '/screens/1.jpg', | ||
thumbnail: image1, | ||
}, | ||
{ | ||
title: 'Time saved', | ||
thumbnail: '/screens/2.jpg', | ||
thumbnail: image2, | ||
}, | ||
{ | ||
title: 'Targeted messaging', | ||
thumbnail: '/screens/3.jpg', | ||
thumbnail: image3, | ||
}, | ||
{ | ||
title: 'Credibility built', | ||
thumbnail: '/screens/4.jpg', | ||
thumbnail: image4, | ||
}, | ||
{ | ||
title: 'Audiences captivated', | ||
thumbnail: '/screens/5.jpg', | ||
thumbnail: image5, | ||
}, | ||
{ | ||
title: 'Strategies optimized', | ||
thumbnail: '/screens/6.jpg', | ||
thumbnail: image6, | ||
}, | ||
{ | ||
title: 'Workflow streamlined', | ||
thumbnail: '/screens/17.jpg', | ||
thumbnail: image17, | ||
}, | ||
{ | ||
title: 'Conversions boosted', | ||
thumbnail: '/screens/7.jpg', | ||
thumbnail: image7, | ||
}, | ||
{ | ||
title: 'ROI maximized', | ||
thumbnail: '/screens/8.jpg', | ||
thumbnail: image8, | ||
}, | ||
{ | ||
title: 'Trends capitalized', | ||
thumbnail: '/screens/9.jpg', | ||
thumbnail: image9, | ||
}, | ||
{ | ||
title: 'Clients satisfied', | ||
thumbnail: '/screens/10.jpg', | ||
thumbnail: image10, | ||
}, | ||
{ | ||
title: 'Goals achieved', | ||
thumbnail: '/screens/16.jpg', | ||
thumbnail: image16, | ||
}, | ||
{ | ||
title: 'Needs met', | ||
thumbnail: '/screens/11.jpg', | ||
thumbnail: image11, | ||
}, | ||
{ | ||
title: 'Connections formed', | ||
thumbnail: '/screens/12.jpg', | ||
thumbnail: image12, | ||
}, | ||
{ | ||
title: 'Briefs nailed', | ||
thumbnail: '/screens/13.jpg', | ||
thumbnail: image13, | ||
}, | ||
]; |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import type { StaticImageData } from 'next/image'; | ||
|
||
declare module '#/images/*' { | ||
const src: StaticImageData; | ||
export default src; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Diff not rendered.
File renamed without changes.
Oops, something went wrong.
Diff not rendered.
This file was deleted.
Oops, something went wrong.
Diff not rendered.
Diff not rendered.
This file was deleted.
Oops, something went wrong.
Diff not rendered.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Oops, something went wrong.