Skip to content
Closed

Blog #3681

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,4 @@
# VERCEL_ENV=
# NEXT_PUBLIC_VERSION=
# NEXT_BUILD_STANDALONE=

6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,8 @@ yarn-error.log*
package-lock.json
# yarn.lock

.notion-api-lock
.notion-api-lock

.history
.cursor
.trae
27 changes: 15 additions & 12 deletions components/PoweredBy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@ import { siteConfig } from '@/lib/config'
* 驱动版权
* @returns
*/
// export default function PoweredBy(props) {
// return (
// <div className={`inline text-sm font-serif ${props.className || ''}`}>
// <span className='mr-1'>Powered by</span>
// <a
// href='https://github.com/tangly1024/NotionNext'
// className='underline justify-start'>
// NotionNext {siteConfig('VERSION')}
// </a>
// .
// </div>
// )
// }
export default function PoweredBy(props) {
return (
<div className={`inline text-sm font-serif ${props.className || ''}`}>
<span className='mr-1'>Powered by</span>
<a
href='https://github.com/tangly1024/NotionNext'
className='underline justify-start'>
NotionNext {siteConfig('VERSION')}
</a>
.
</div>
)
}
return ""
}