diff --git a/next-env.d.ts b/next-env.d.ts index 1b3be08..3cd7048 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,5 +1,6 @@ /// /// +/// // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/src/components/home/clients.tsx b/src/components/home/clients.tsx index 2726ef3..6444b89 100644 --- a/src/components/home/clients.tsx +++ b/src/components/home/clients.tsx @@ -19,12 +19,12 @@ export default function Clients() { {/* Grid */}
- + - + @@ -32,8 +32,8 @@ export default function Clients() { {/* End Grid */} {/* Grid */}
- - + + diff --git a/src/utils/contents.tsx b/src/utils/contents.tsx index 9bf683d..a524b28 100644 --- a/src/utils/contents.tsx +++ b/src/utils/contents.tsx @@ -34,13 +34,13 @@ function getExcerpt(content) { } async function readMDXFile(filePath, category) { - console.log(`parsing file: ${filePath}`); + // console.log(`parsing file: ${filePath}`); let rawContent = fs.readFileSync(filePath, 'utf-8') let { data: metadata, content } = matter(rawContent) - console.log(`metadata:`, metadata); + // console.log(`metadata:`, metadata); content = content.trim() diff --git a/tailwind.config.ts b/tailwind.config.ts index 9d2a50b..6e161d7 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -321,6 +321,8 @@ module.exports = { flex: 'none', minWidth: '100%', }, + 'code::before': false, + 'code::after': false, table: { fontSize: theme('fontSize.sm')[0], lineHeight: theme('fontSize.sm')[1].lineHeight,