Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React19 #77

Merged
merged 3 commits into from
May 24, 2024
Merged
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
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion content/blogs/learn-github-markdown.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Here is my MDX file for Component [mdx.tsx](https://github.com/patelvivekdev/pat

```

<div className='flex my-5 justify-center gap-5 space-x-4 '>
<div className='my-5 flex justify-center gap-5 space-x-4 '>
<Link href='/'>home</Link>
<Link href='http://github.com'>GitHub</Link>
</div>
Expand Down
20 changes: 18 additions & 2 deletions content/projects/acme-auth.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,29 @@ title: 'Acme Auth: A Next.js Based Authentication'
description: 'Discover how Acme Auth, a robust full-stack authentication system crafted with React, Next.js, Express, and MongoDB, empowers seamless user authentication, signup, login, logout, and password reset functionalities.'
slug: 'acme-auth'
publishedAt: 'April 03, 2024'
tags: [NextJs, React, Express, MongoDB, JWT, TypeScript, Zod, ShadcnUI, AcertinityUI]
tags:
[
NextJs,
React,
Express,
MongoDB,
JWT,
TypeScript,
Zod,
ShadcnUI,
AcertinityUI,
]
published: true
---

## Acme Auth

<RoundedImage src='/projects/acme-auth.png' width={500} height={500} alt='Acme Auth' />
<RoundedImage
src='/projects/acme-auth.png'
width={500}
height={500}
alt='Acme Auth'
/>

## Overview

Expand Down
2 changes: 1 addition & 1 deletion content/projects/market-hub.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ published: true
## Market hub

<RoundedImage
className='rounded-lg shadow-lg dark:shadow-white shadow-slate-800 mx-auto'
className='mx-auto rounded-lg shadow-lg shadow-slate-800 dark:shadow-white'
src='/projects/market-hub.png'
width={500}
height={500}
Expand Down
7 changes: 6 additions & 1 deletion content/projects/true-feedback.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ published: true

## True Feedback

<RoundedImage src='/projects/true-feedback.png' width={500} height={500} alt='Acme Auth' />
<RoundedImage
src='/projects/true-feedback.png'
width={500}
height={500}
alt='Acme Auth'
/>

## Overview

Expand Down
7 changes: 6 additions & 1 deletion content/snippets/dark-mode.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@ export default function RootLayout({
return (
<html lang='en' suppressHydrationWarning>
<body className='bg-neutral-100 dark:bg-neutral-900'>
<ThemeProvider attribute='class' defaultTheme='system' enableSystem={true} disableTransitionOnChange>
<ThemeProvider
attribute='class'
defaultTheme='system'
enableSystem={true}
disableTransitionOnChange
>
<main>{children}</main>
</ThemeProvider>
</body>
Expand Down
17 changes: 17 additions & 0 deletions content/snippets/drizzle-with-turso.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: 'Setting up Drizzle ORM with Turso'
publishedAt: 'May 25, 2024'
slug: 'drizzle-with-turso'
description: 'Setting up Drizzle ORM with Turso in a Next.js application'
tags: [drizzle, turso, nextjs, setup, SQLite, database, edge]
published: false
---

{/_ <RoundedImage
src='/snippets/drizzle-with-turso.webp'
width={800}
height={600}
alt='Drizzle with Turso'
/> _/}

## Introduction
2 changes: 1 addition & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import withBundleAnalyzer from '@next/bundle-analyzer';
// import withBundleAnalyzer from '@next/bundle-analyzer';

/** @type {import('next').NextConfig} */
const nextConfig = {
Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
},
"dependencies": {
"@fec/remark-a11y-emoji": "^4.0.2",
"@next/bundle-analyzer": "14.3.0-canary.76",
"@next/eslint-plugin-next": "14.3.0-canary.76",
"@next/bundle-analyzer": "14.3.0-canary.80",
"@next/eslint-plugin-next": "14.3.0-canary.80",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
Expand All @@ -30,17 +30,18 @@
"cmdk": "^1.0.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.373.0",
"next": "14.3.0-canary.76",
"next": "14.3.0-canary.80",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.3.0",
"react": "19.0.0-beta-04b058868c-20240508",
"react-dom": "19.0.0-beta-04b058868c-20240508",
"react": "19.0.0-rc-f994737d14-20240522",
"react-dom": "19.0.0-rc-f994737d14-20240522",
"react-hot-toast": "^2.4.1",
"reading-duration": "^1.1.2",
"rss": "^1.2.2",
"sharp": "^0.33.3",
"sugar-high": "^0.6.0",
"tailwind-merge": "^2.2.2",
"update": "^0.7.4",
"zod": "^3.22.4"
},
"devDependencies": {
Expand All @@ -51,7 +52,7 @@
"@types/rss": "^0.0.32",
"autoprefixer": "^10.4.17",
"eslint": "^8",
"eslint-config-next": "^14.3.0-canary.76",
"eslint-config-next": "^14.3.0-canary.80",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
Expand Down
Loading