-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
object movies array - carnegie hall - plaza hotel
- Loading branch information
Arthur
authored and
Arthur
committed
Mar 7, 2024
1 parent
688808b
commit 039751a
Showing
17 changed files
with
77 additions
and
556 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,84 +1,5 @@ | ||
<p style="text-align: center"> | ||
<img style="width: 900px" src="Nuxtwind Daisy Banner.jpg"/> | ||
</p> | ||
|
||
<h1 align="center">Nuxtwind Daisy 🟢💨🌼</h1> | ||
<p style="text-align: center"> | ||
Nuxtwind Daisy is a starter template for Nuxt.js 3 + Tailwind CSS + Daisy UI with additional installed setup for custom font, icons, animation, and more. | ||
</p> | ||
# New York Movies | ||
|
||
- [Showcase](#showcase) | ||
- [Getting Started Guide](#getting-started-guide) | ||
[Check online](https://new-york-movies.vercel.app/) | ||
|
||
# Showcase | ||
|
||
Brag your modified version from this template. 💪 | ||
|
||
- [jofftiquez.dev](https://jofftiquez.dev) | ||
|
||
# Getting Started Guide | ||
|
||
## Installation | ||
|
||
Nope. No installation needed. | ||
|
||
## Fork | ||
|
||
Fork this repository to your own GitHub account. | ||
|
||
<img width="800" src="fork.png"> | ||
|
||
Make it yours. Rename it. Change the description. Hit Create fork. | ||
|
||
<img width="800" src="make-it-yours.png"> | ||
|
||
## Make changes | ||
|
||
I will assume that you already know the basic of nuxt.js. If not, you can check out their [documentation](https://nuxt.com/docs/getting-started/introduction). | ||
|
||
Now that it's yours, you can make changes to it. Be creative you can start by removing the contents in the `pages/index.vue`. Feel free to utilize the `GenericPanel.vue` component as it adds a nice balance to the layout. | ||
|
||
## Preview | ||
|
||
You can preview your build by running the `nuxt start` command. | ||
|
||
```bash | ||
# Preview your build | ||
$ nuxt start | ||
``` | ||
|
||
## Build | ||
|
||
You can choose to build it using the defaul strategy which is SSR, but you also have the option to generate static files so you can just upload your work in any static hosting service. The sample site of this repo is hosted in Vercel. | ||
|
||
|
||
```bash | ||
# Build for production using SSR | ||
$ nuxt build | ||
``` | ||
|
||
```bash | ||
# Build for production and generate static files | ||
$ nuxt generate | ||
``` | ||
|
||
## Deploy | ||
|
||
You can deploy your work in any static hosting service. | ||
|
||
Here's a list of static hosting services that you can use: | ||
|
||
- [Vercel](https://vercel.com/) | ||
- [Netlify](https://www.netlify.com/) | ||
- [Firebase](https://firebase.google.com/) | ||
- [Surge](https://surge.sh/) | ||
- [Render](https://render.com/) | ||
- [GitHub Pages](https://pages.github.com/) | ||
- [GitLab Pages](https://docs.gitlab.com/ee/user/project/pages/) | ||
- [AWS Amplify](https://aws.amazon.com/amplify/) | ||
- [Cloudflare Pages](https://pages.cloudflare.com/) | ||
- [Begin](https://begin.com/) | ||
- [Fast.io](https://fast.io/) | ||
- [Fly](https://fly.io/) | ||
- [Deta](https://www.deta.sh/) | ||
- [Aerobatic](https://www.aerobatic.com/) |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<template> | ||
<l-marker :lat-lng="coords"> | ||
<l-popup class="m-3 w-60 max-w-full h-52"> | ||
<h2 class="text-lg m-1 italic">{{placeName}}</h2> | ||
<h3 class="text-md text-teal-700 m-1">{{ title }}</h3> | ||
<video controls width="600"> | ||
<source :src="src" type="video/mp4" /> | ||
</video> | ||
</l-popup> | ||
</l-marker> | ||
</template> | ||
|
||
<script setup> | ||
const props = defineProps({ | ||
title : { | ||
type : String, | ||
required : true | ||
}, | ||
src : { | ||
type : String, | ||
required : true | ||
}, | ||
placeName : { | ||
type :String, | ||
required:true | ||
}, | ||
coords : { | ||
type : Array, | ||
required : true | ||
} | ||
}) | ||
</script> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.