Skip to content

Commit

Permalink
Merge pull request #14 from sryung1225/dev
Browse files Browse the repository at this point in the history
코드 개선 작업 배포 이후 수정 작업
  • Loading branch information
sryung1225 authored Dec 21, 2023
2 parents 7fae54d + 4b5a909 commit 48fa907
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,21 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/logo.ico" />
<title>Zwitter</title>
<meta property="og:site_name" content="Zwitter" />
<meta property="og:title" content="Zwitter" />
<meta property="og:type" content="website" />
<meta property="og:image" content="/logo.jpg" />
<meta
name="description"
property="og:description"
content="쉿-! 지금 Z세대는 Zwitter에서 조잘거리는 중"
/>
<meta name="author" content="sryung1225" />
<meta property="og:site_name" content="Zwitter" />
<meta property="og:title" content="Zwitter" />
<meta property="og:type" content="website" />
<meta property="og:image" content="./src/assets/logo.jpg" />
<meta
name="og:url"
property="og:url"
content="https://xwitter-c64ef.web.app/"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/galmuri/dist/galmuri.css"
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useEffect, useState, lazy, Suspense } from 'react';
import { RouterProvider, createBrowserRouter } from 'react-router-dom';
import { auth } from './firebase.ts';
import LoadingSpinner from './components/loading-spinner.tsx';
import * as S from './styles/global.ts';

const ProtectedRoute = lazy(() => import('./components/protected-route.tsx'));
Expand All @@ -9,7 +10,6 @@ const Profile = lazy(() => import('./routes/profile.tsx'));
const SearchResult = lazy(() => import('./routes/search-result.tsx'));
const Auth = lazy(() => import('./routes/auth.tsx'));
const Layout = lazy(() => import('./components/layout.tsx'));
const LoadingSpinner = lazy(() => import('./components/loading-spinner.tsx'));

const router = createBrowserRouter([
{
Expand Down

0 comments on commit 48fa907

Please sign in to comment.