Skip to content

Commit

Permalink
first-version
Browse files Browse the repository at this point in the history
  • Loading branch information
sohilpro committed May 12, 2023
0 parents commit 2f70f47
Show file tree
Hide file tree
Showing 102 changed files with 21,665 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
node_modules
*.log*
.nuxt
.nitro
.cache
.output
.env
dist
.DS_Store
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
shamefully-hoist=true
strict-peer-dependencies=false
47 changes: 47 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Product Details UI | Nothing4us

A Pen created on CodePen.io. Original URL: [https://codepen.io/sohilpro](https://codepen.io/sohilpro).
Project URL: [https://pet-shop-sohilpro.netlify.app/](https://pet-shop-sohilpro.netlify.app/).

# Nuxt 3 Minimal Starter

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install the dependencies:

```bash
# yarn
yarn install

# npm
npm install

# pnpm
pnpm install
```

## Development Server

Start the development server on http://localhost:3000

```bash
npm run dev
```

## Production

Build the application for production:

```bash
npm run build
```

Locally preview production build:

```bash
npm run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
8 changes: 8 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<template>
<Body class="dark:bg-gray-900">
<NuxtLoadingIndicator color="#1e2f97"/>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</Body>
</template>
Loading

0 comments on commit 2f70f47

Please sign in to comment.