Skip to content

Commit

Permalink
chore: 스위프티에 맞게 이미지 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ho991217 committed May 8, 2024
1 parent fdc2e7e commit 92085f5
Show file tree
Hide file tree
Showing 44 changed files with 70 additions and 131 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ next-env.d.ts
/blob-report/
/playwright/.cache/

# Sentry Config File
.sentryclirc

**/public/precache.*.*.js
**/public/sw.js
Expand Down
3 changes: 3 additions & 0 deletions .sentryclirc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

[auth]
token=48fb581a48bbda24a03966e3d24b74e7a9e499f112029bc1da9bd03fe38ca8c9
5 changes: 0 additions & 5 deletions app/[locale]/error.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client';

import { Link } from '@components/common';
import * as Sentry from '@sentry/nextjs';
import { useEffect } from 'react';

export default function Error({
Expand All @@ -11,10 +10,6 @@ export default function Error({
error: Error & { digest?: string };
reset: () => void;
}) {
useEffect(() => {
Sentry.captureException(error);
}, [error]);

return (
<div className="flex h-[100dvh] w-full flex-col items-center justify-center relative">
<h2 className="text-xl">에러!</h2>
Expand Down
Binary file modified app/favicon.ico
Binary file not shown.
5 changes: 0 additions & 5 deletions app/global-error.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client';

import { Link } from '@components/common';
import * as Sentry from '@sentry/nextjs';
import Error from 'next/error';
import { useEffect } from 'react';

Expand All @@ -17,10 +16,6 @@ export default function GlobalError({
error: Error & { digest?: string };
reset: () => void;
}) {
useEffect(() => {
Sentry.captureException(error);
}, [error]);

return (
<html>
<body>
Expand Down
16 changes: 8 additions & 8 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ import './globals.css';
import Providers from './providers';

export const metadata: Metadata = {
title: '단페스타 2024',
description: '단국대학교 대동제 2024 공식 홈페이지 입니다.',
title: 'Swifty',
description: '전국 대학 축제 종합 솔루션, 스위프티 입니다.',
manifest: '/manifest.json',
viewport:
'minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no, viewport-fit=cover',
openGraph: {
type: 'website',
locale: 'ko_KR',
title: '단페스타 2024',
description: '단국대학교 대동제 2024 공식 홈페이지 입니다.',
url: 'https://danfesta.com',
siteName: '단페스타 2024',
title: 'Swifty',
description: '전국 대학 축제 종합 솔루션, 스위프티 입니다.',
url: 'https://swifty-festival.vercel.app',
siteName: 'Swifty',
images: [
{
url: 'https://www.danfesta.com/opengraph-image.png',
url: 'https://swifty-festival.vercel.app/opengraph-image.png',
},
],
},
metadataBase: new URL('/', 'https://www.danfesta.com/'),
metadataBase: new URL('/', 'https://swifty-festival.vercel.app'),
};

export const viewport: Viewport = {
Expand Down
1 change: 0 additions & 1 deletion app/opengraph-image.alt copy.txt

This file was deleted.

1 change: 1 addition & 0 deletions app/opengraph-image.alt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
swifty
Binary file modified app/opengraph-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/twitter-image.alt.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
단페스타 2024
Swifty
Binary file modified app/twitter-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 13 additions & 16 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import withBundleAnalyzer from '@next/bundle-analyzer';
import withPlaiceholder from '@plaiceholder/next';
import { withSentryConfig } from '@sentry/nextjs';
import createNextIntlPlugin from 'next-intl/plugin';
import withPWA from 'next-pwa';

Expand Down Expand Up @@ -50,20 +49,18 @@ const nextConfig = {

export default withBundleAnalyzerConfig(
withPWAConfig(
withSentryConfig(
withNextIntl(withPlaiceholder(nextConfig)),
{
silent: true,
org: 'danfesta',
project: 'javascript-nextjs',
},
{
widenClientFileUpload: true,
tunnelRoute: '/monitoring',
hideSourceMaps: true,
disableLogger: true,
automaticVercelMonitors: true,
},
),
withNextIntl(withPlaiceholder(nextConfig)),
{
silent: true,
org: 'danfesta',
project: 'javascript-nextjs',
},
{
widenClientFileUpload: true,
tunnelRoute: '/monitoring',
hideSourceMaps: true,
disableLogger: true,
automaticVercelMonitors: true,
},
),
);
8 changes: 0 additions & 8 deletions nginx.conf

This file was deleted.

10 changes: 2 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
{
"name": "danfesta2024",
"author": {
"name": "이호연",
"email": "[email protected]",
"url": "https://github.com/ho991217"
},
"version": "0.2.0",
"name": "Swifty",
"version": "0.1.0",
"license": "Proprietary",
"scripts": {
"dev": "next dev",
Expand Down Expand Up @@ -117,7 +112,6 @@
"ts-node": "^10.9.2",
"typescript": "^5"
},
"packageManager": "[email protected]",
"browserslist": [
">0.2%",
"not dead",
Expand Down
Binary file modified public/android-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/android-icon-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/android-icon-36x36.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/android-icon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/android-icon-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/android-icon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-114x114.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-57x57.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-60x60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-76x76.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon-precomposed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions public/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig><msapplication><tile><square70x70logo src="/ms-icon-70x70.png"/><square150x150logo src="/ms-icon-150x150.png"/><square310x310logo src="/ms-icon-310x310.png"/><TileColor>#ffffff</TileColor></tile></msapplication></browserconfig>
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
87 changes: 40 additions & 47 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,41 @@
{
"name": "Danfesta - 단국대학교 2024 대동제 티켓 시스템",
"short_name": "Danfesta",
"description": "단국대학교 2024 대동제 티켓 시스템입니다.",
"theme_color": "#0262E9",
"background_color": "#ffffff",
"display": "standalone",
"scope": "./",
"start_url": "./",
"icons": [
{
"src": "\/android-icon-36x36.png",
"sizes": "36x36",
"type": "image\/png",
"density": "0.75"
},
{
"src": "\/android-icon-48x48.png",
"sizes": "48x48",
"type": "image\/png",
"density": "1.0"
},
{
"src": "\/android-icon-72x72.png",
"sizes": "72x72",
"type": "image\/png",
"density": "1.5"
},
{
"src": "\/android-icon-96x96.png",
"sizes": "96x96",
"type": "image\/png",
"density": "2.0"
},
{
"src": "\/android-icon-144x144.png",
"sizes": "144x144",
"type": "image\/png",
"density": "3.0"
},
{
"src": "\/android-icon-192x192.png",
"sizes": "192x192",
"type": "image\/png",
"density": "4.0"
}
]
}
"name": "App",
"icons": [
{
"src": "\/android-icon-36x36.png",
"sizes": "36x36",
"type": "image\/png",
"density": "0.75"
},
{
"src": "\/android-icon-48x48.png",
"sizes": "48x48",
"type": "image\/png",
"density": "1.0"
},
{
"src": "\/android-icon-72x72.png",
"sizes": "72x72",
"type": "image\/png",
"density": "1.5"
},
{
"src": "\/android-icon-96x96.png",
"sizes": "96x96",
"type": "image\/png",
"density": "2.0"
},
{
"src": "\/android-icon-144x144.png",
"sizes": "144x144",
"type": "image\/png",
"density": "3.0"
},
{
"src": "\/android-icon-192x192.png",
"sizes": "192x192",
"type": "image\/png",
"density": "4.0"
}
]
}
Binary file added public/ms-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/ms-icon-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/ms-icon-310x310.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/ms-icon-70x70.png
15 changes: 0 additions & 15 deletions sentry.client.config.ts

This file was deleted.

8 changes: 0 additions & 8 deletions sentry.edge.config.ts

This file was deleted.

7 changes: 0 additions & 7 deletions sentry.server.config.ts

This file was deleted.

0 comments on commit 92085f5

Please sign in to comment.