Mercurial > borealpoint
changeset 1:8971e685366b
inital simple dashboard
| author | luka |
|---|---|
| date | Sat, 23 Aug 2025 22:59:37 -0400 |
| parents | 9d7dcd54c677 |
| children | 90296614b7e2 |
| files | public/forest_bg.png resources/views/welcome.blade.php |
| diffstat | 2 files changed, 146 insertions(+), 37 deletions(-) [+] |
line wrap: on
line diff
--- a/resources/views/welcome.blade.php Sat Aug 23 22:20:51 2025 -0400 +++ b/resources/views/welcome.blade.php Sat Aug 23 22:59:37 2025 -0400 @@ -1,44 +1,153 @@ <!DOCTYPE html> -<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> - +<html lang="en"> <head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <title>{{ config('app.name', '') }} </title> - <!-- Scripts --> - @vite(['resources/sass/app.scss', 'resources/js/app.js']) + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Boreal Point</title> + <style> + /* --- Global Styles --- */ + body { + margin: 0; + font-family: 'Lato', sans-serif; + line-height: 1.6; + color: #333; + background-color: #fff; + } + h1, h2, h3 { + margin-top: 0; + } + a.button { + display: inline-block; + padding: 0.75em 1.5em; + margin-top: 1em; + background: #B22222; + color: #fff; + text-decoration: none; + border-radius: 8px; + transition: background 0.3s ease; + } + a.button:hover { + background: #8B1A1A; + } + section { + padding: 4em 1em; + text-align: center; + } + .container { + max-width: 1000px; + margin: 0 auto; + padding: 0 1em; + } + /* --- Hero Section --- */ + .hero { + background: linear-gradient(rgba(30,58,95,0.85), rgba(30,58,95,0.85)), + url('/forest_bg.png') no-repeat center center/cover; + color: #fff; + padding: 6em 1em; + } + .hero h1 { + font-size: 2.5rem; + margin-bottom: 0.5em; + } + .hero p { + font-size: 1.25rem; + } + /* --- Services Section --- */ + .services { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2em; + margin-top: 2em; + } + .service { + background: #f8f8f8; + padding: 2em; + border-radius: 12px; + box-shadow: 0 2px 8px rgba(0,0,0,0.05); + } + /* --- Contact --- */ + footer { + background: #1E3A5F; + color: #fff; + padding: 2em 1em; + text-align: center; + } + footer a { + color: #fff; + text-decoration: underline; + } + </style> </head> +<body> -<body class="font-sans antialiased bg-light"> - <header class="p-4 w-100 text-body-secondary mb-3 d-none d-lg-block"> - @if (Route::has('login')) - <nav class="d-flex align-items-center justify-content-end gap-2"> - @auth - <a href="{{ url('/dashboard') }}" class="btn btn-outline-secondary btn-sm"> - Dashboard - </a> - @else - <a href="{{ route('login') }}" class="btn btn-outline-secondary btn-sm"> - Log in - </a> - @if (Route::has('register')) - <a href="{{ route('register') }}" class="btn btn-outline-secondary btn-sm"> - Register - </a> - @endif - @endauth - </nav> - @endif - </header> - <div class="text-dark d-flex p-3 p-lg-4 align-items-center justify-content-center flex-column"> - <main class="text-center"> - <h1>Welcome to Laravel</h1> - <p class="lead">This is a basic homepage for your Laravel application.</p> - </main> - @if (Route::has('login')) - <div class="d-none d-lg-block" style="height: 58px;"></div> - @endif + <!-- Hero Section --> + <section class="hero"> + <div class="container"> + <h1>Boreal Point</h1> + <p>Custom Software Solutions - Built in Canada</p> + <a href="#contact" class="button">Let’s Talk</a> + </div> + </section> + + <!-- About --> + <section id="about"> + <div class="container"> + <h2>About Us</h2> + <p> + At Boreal Point, we design and build custom software that help businesses work smarter, not harder. + Rooted in Canada, we combine technical expertise with a down-to-earth approach, making technology simple, practical, and reliable. + + </p> </div> -</body> + </section> + + <!-- Services --> + <section id="services"> + <div class="container"> + <h2>Our Services</h2> + <div class="services"> + <div class="service"> + <h3>Custom Business Tools</h3> + <p>Tailored software to manage your operations with ease.</p> + </div> + <div class="service"> + <h3>Workflow Automation</h3> + <p>Automate repetitive tasks and free up your time.</p> + </div> + <div class="service"> + <h3>Web Applications</h3> + <p>Secure, scalable, and designed for your business.</p> + </div> + </div> + </div> + </section> + <!-- Why Choose Us --> + <section id="why"> + <div class="container"> + <h2>Why Choose Us</h2> + <p><strong>Tailored for Small Business</strong> – We understand the challenges of small operations.</p> + <p><strong>Built in Canada</strong> – Local solutions with global standards.</p> + <p><strong>Simple & Transparent</strong> – Straightforward pricing and no technical jargon.</p> + </div> + </section> + + <!-- Contact --> + <section id="contact"> + <div class="container"> + <h2>Contact Us</h2> + <p>Let’s build something great together.</p> + {{-- <p><a href="mailto:info@borealpoint.ca">info@yourcompany.ca</a></p> --}} + <p>Based in Canada</p> + {{-- <a href="mailto:info@borealpoint.ca" class="button">Get in Touch</a> --}} + </div> + </section> + + <!-- Footer --> + <footer> + <p>© 2025 Boreal Point Software Inc. Built in Canada</p> + </footer> + +</body> </html> +
