Skip to content

Commit

Permalink
Remove ununsed files
Browse files Browse the repository at this point in the history
  • Loading branch information
highjun committed Sep 20, 2024
1 parent 2e2863d commit e4c5bf6
Show file tree
Hide file tree
Showing 43 changed files with 1,484 additions and 3,904 deletions.
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.
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.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import MDX from '@/components/MDX';
import Writer from '@/components/Writer';
import Writer from '@/OLDS/Writer';
import { readMDFileByPath, readMDXDir } from '@/utils/file';

export async function generateStaticParams() {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import MDX from '@/components/MDX';
import Member from '@/components/Member';
import Writer from '@/components/Writer';
import Writer from '@/OLDS/Writer';
import { readMDFileByPath, readMDXDir } from '@/utils/file';
import members from '@data/members';

Expand Down
File renamed without changes.
File renamed without changes.
5,346 changes: 1,474 additions & 3,872 deletions package-lock.json

Large diffs are not rendered by default.

31 changes: 4 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,15 @@
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "NODE_ENV=development next dev",
"build": "NODE_ENV=production next build",
"lint": "next lint",
"process": "node processing/testbed.js",
"postbuild": "next-sitemap"
"dev": "next dev",
"build": "next build",
"lint": "next lint"
},
"dependencies": {
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.4",
"@next/third-parties": "^14.2.5",
"@types/mdx": "^2.0.13",
"bibtex-js-parser": "^1.1.6",
"front-matter": "^4.0.2",
"gray-matter": "^4.0.3",
"next": "14.2.4",
"next-mdx-remote": "^5.0.0",
"next-sitemap": "^4.2.3",
"prism-react-renderer": "^2.3.1",
"react": "^18",
"react-dom": "^18",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"shiki": "^1.10.3",
"strip-markdown": "^6.0.0",
"unified": "^11.0.5"
"react-dom": "^18"
},
"devDependencies": {
"@iconify/react": "^5.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function RootLayout({
return (
<html lang="en">
<body className={inter.className} suppressHydrationWarning={true}>
<NavBar navs={navs} />
<NavBar/>
<main className="relative m-auto min-h-screen px-4 pt-8 pb-16 lg:pt-16 lg:pb-24 bg-white dark:bg-gray-900 w-full max-w-screen-xl format format-sm sm:format-base lg:format-lg format-blue dark:format-invert">
{children}
<TopButton />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Member.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const CurrentMember: React.FC<CurrentMemberProp> = (member) => {
return (
<div className="not-format flex flex-col sm:gap-12 sm:flex-row relative">
<Image
className="w-52 rounded-2xl object-cover aspect-[4/5]"
className="self-center w-52 rounded-2xl object-cover aspect-[4/5]"
src= {member.image}
alt = {member.name}
width={208}
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"out/types/**/*.ts"
],
"exclude": [
"node_modules"
"node_modules",
"OLD/"
]
}

0 comments on commit e4c5bf6

Please sign in to comment.