diff --git a/.README.md.swp b/.README.md.swp deleted file mode 100644 index 2771ee2..0000000 Binary files a/.README.md.swp and /dev/null differ diff --git a/.composer.json.swp b/.composer.json.swp deleted file mode 100644 index 5b456e6..0000000 Binary files a/.composer.json.swp and /dev/null differ diff --git a/.gitignore b/.gitignore index 0ae59f0..dbb2610 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.sw[po] /node_modules /public/hot /public/storage diff --git a/.gitignore.swp b/.gitignore.swp deleted file mode 100644 index 6bfe99f..0000000 Binary files a/.gitignore.swp and /dev/null differ diff --git a/README.md b/README.md index e1dcd2e..4da0caf 100644 --- a/README.md +++ b/README.md @@ -1,62 +1,8 @@ -<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400"></a></p> -<p align="center"> -<a href="https://travis-ci.org/laravel/framework"><img src="https://travis-ci.org/laravel/framework.svg" alt="Build Status"></a> -<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a> -<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a> -<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a> -</p> - -## About Laravel - -Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: - -- [Simple, fast routing engine](https://laravel.com/docs/routing). -- [Powerful dependency injection container](https://laravel.com/docs/container). -- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. -- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). -- Database agnostic [schema migrations](https://laravel.com/docs/migrations). -- [Robust background job processing](https://laravel.com/docs/queues). -- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). - -Laravel is accessible, powerful, and provides tools required for large, robust applications. - -## Learning Laravel - -Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. - -If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. - -## Laravel Sponsors - -We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell). - -### Premium Partners - -- **[Vehikl](https://vehikl.com/)** -- **[Tighten Co.](https://tighten.co)** -- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** -- **[64 Robots](https://64robots.com)** -- **[Cubet Techno Labs](https://cubettech.com)** -- **[Cyber-Duck](https://cyber-duck.co.uk)** -- **[Many](https://www.many.co.uk)** -- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** -- **[DevSquad](https://devsquad.com)** -- **[Curotec](https://www.curotec.com/)** -- **[OP.GG](https://op.gg)** - -## Contributing - -Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). - -## Code of Conduct - -In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). - -## Security Vulnerabilities - -If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. +## Deployment +- Make sure directories like storage have appropriate file permissions ## License +This is a private closed source project. -The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). +## TODO diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php new file mode 100644 index 0000000..7f6a843 --- /dev/null +++ b/resources/views/home.blade.php @@ -0,0 +1,45 @@ +@extends('master') + +@section('title', 'Home') + +@section('head-metas') + @parent + <link rel="stylesheet" href="{{asset('main.css')}}"> +@endsection + +@section('content') + @parent + <div class='landing-hero'> + <div class='hero-filter'> + <h2>The Web's #1 Content Promoter.</h2> + </div> + </div> + <section class="about-us"> + <h2>Elit</h2> + <p>Dolor molestiae quos architecto nesciunt enim! Sit corrupti voluptas + aliquam aperiam maiores iure aliquam aut Voluptatem quas deserunt iure non sunt + Esse laborum corporis explicabo eos numquam. Fugit ad ex? + </p> + </section> + <section class='services-cards'> + <h2>Dolor laborum.</h2> + <div class="card">Amet vero est sunt suscipit</div> + <div class="card">Consectetur consequatur aliquam.</div> + <div class="card">Sit</div> + <div class="card">Dolor adipisci quos distinctio?</div> + </section> + <section class='faq'> + <h2>FAQ</h2> + <div class="card"></div> + <div class="card"></div> + <div class="card"></div> + <div class="card"></div> + <div class="card"></div> + <div class="card"></div> + </section> +@endsection + +@section('scripts') + @parent + <script src="main.js"></script> +@endsection diff --git a/resources/views/master.blade.php b/resources/views/master.blade.php new file mode 100644 index 0000000..bc8acdf --- /dev/null +++ b/resources/views/master.blade.php @@ -0,0 +1,50 @@ +<!DOCTYPE html> +<head> +{{-- This section may need to be overwritten in descendants --}} +@section('head-metas') + <meta charset='utf-8'> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <link rel="stylesheet" href=""> + <link rel="stylesheet" href=""> +@show + <title>Trendplays - @yield('title')</title> +</head> + +<body> + <nav class='navigator' role="navigation"> + <a id='logo' href='/'> + <h3>Trendplays</h3> + </a> + @guest + <form class= 'login' method='POST'> + @csrf + <label for='sender_email'>Email</label> + <input required type='email' name='sender_email' placeholder='' +spellcheck='false'> + <label for='sender_password'>Password</label> + <input required type='password' name='sender_password' placeholder='' spellcheck='false'> + <button class='login-button'type="login">Log in</button> + </form> + <a href='/register' class='register-button' type="login">Register</a> + @endguest + <span class="icon-bar"></span> + <!-- probably not needed --> + </nav> + <div class='errors'> + <ul> + @foreach ($errors->all() as $error) + <li>{{$error}}</li> + @endforeach + </ul> + </div> + @yield('content') + <footer class='footer text-center'> + <div class='foot-links'> + <a class="footer-item" href="/terms">Terms & Policy</a> + <a class="footer-item" href="/contact">Help</a> + <a class="footer-item" href="/reset-password">Reset Password</a> + </div> + <small>©Copyright 2021 Trendplays Network, Inc.</small> + </footer> + @yield('scripts') +</body> diff --git a/resources/views/panel.blade.php b/resources/views/panel.blade.php new file mode 100644 index 0000000..e69de29 diff --git a/resources/views/terms.blade.php b/resources/views/terms.blade.php new file mode 100644 index 0000000..e69de29 diff --git a/routes/web.php b/routes/web.php index b130397..fd12519 100644 --- a/routes/web.php +++ b/routes/web.php @@ -14,5 +14,5 @@ use Illuminate\Support\Facades\Route; */ Route::get('/', function () { - return view('welcome'); + return view('home'); });