Skip to content

Commit

Permalink
Chore: Create next/ts/tailwind app
Browse files Browse the repository at this point in the history
  • Loading branch information
rudyorre committed Dec 25, 2023
1 parent f440bec commit c02d50f
Show file tree
Hide file tree
Showing 103 changed files with 4,678 additions and 4,706 deletions.
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
.DS_Store
.next
node_modules

# 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

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
51 changes: 27 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,36 @@
# [rudyorre.com](https://rudyorre.com)
<p float="left">
<a href="https://www.javascript.com/">
<img src="https://img.shields.io/badge/JavaScript-%23323330.svg?style=flat&logo=javascript&logoColor=%23F7DF1E"/></a>
<img src="https://img.shields.io/badge/TypeScript-%23007ACC.svg?style=flat&logo=typescript&logoColor=white"/>
<img src="https://img.shields.io/badge/React-20232A?style=flat&logo=react&logoColor=61DAFB" />
<img src="https://img.shields.io/badge/Next-black?style=flat&logo=next.js&logoColor=white" />
</p>
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

## About
## Getting Started

Source code for my portfolio website (v3). Built with React/Nextjs.

## Running locally in development mode

To get started, just clone the repository and run `npm install && npm run dev`:
First, run the development server:

```bash
git clone https://github.com/rudyorre/rudyorre.com.git
cd rudyorre.com
npm install
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

## Building and deploying in production
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

If you wanted to run this site in production, you should install modules then build the site with `npm run build` and run it with `npm start`:
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

```bash
npm install
npm run build
npm start
```
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
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"
}
}
42 changes: 0 additions & 42 deletions docs/404.html

This file was deleted.

1 change: 0 additions & 1 deletion docs/CNAME

This file was deleted.

1 change: 0 additions & 1 deletion docs/_next/static/YgnoiphC8jsu9AB_opwB3/_buildManifest.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/_next/static/YgnoiphC8jsu9AB_opwB3/_ssgManifest.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/_next/static/chunks/94-cd0b8829f1a39bbc7b07.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/_next/static/chunks/95b64a6e-dc348ec095a9e4d2a3ae.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/_next/static/chunks/d64684d8-b4a689461f1aa2ae895e.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/_next/static/chunks/d7eeaac4-e257884bf9028fa03474.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/_next/static/chunks/framework-895f067827ebe11ffe45.js

This file was deleted.

1 change: 0 additions & 1 deletion docs/_next/static/chunks/main-a24daf920c9258eff6c9.js

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit c02d50f

Please sign in to comment.