Skip to content

Commit

Permalink
blog created
Browse files Browse the repository at this point in the history
  • Loading branch information
shivaydv committed Nov 3, 2024
0 parents commit 73e5ca5
Show file tree
Hide file tree
Showing 110 changed files with 18,326 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["prettier-plugin-tailwindcss"]
}
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Blog Website - Shiva Yadav

**Techstack used:**
- Nextjs
- Tailwind CSS
- Shadcn UI
- MDX
- Next Auth
- Prisma ORM
- MongoDB
17 changes: 17 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/app/globals.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
3 changes: 3 additions & 0 deletions lib/firebase.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { getStorage } from "firebase/storage";

export const storage = getStorage(app);
26 changes: 26 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import remarkGfm from 'remark-gfm'
import createMDX from "@next/mdx";

/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ["js", "jsx", "ts", "tsx", "md", "mdx"],
images:{
remotePatterns:[
{
hostname:"res.cloudinary.com",
port:"",
protocol:"https",
pathname:"**"
}
]
}
};

const withMDX = createMDX({
options: {
remarkPlugins: [],
rehypePlugins: [],
},
});

export default withMDX(nextConfig);
Loading

0 comments on commit 73e5ca5

Please sign in to comment.