🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:public.blade.php
<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>@yield('title', 'WebsparkIT - Web Design Sri Lanka')</title> <meta name="description" content="@yield('meta_description', 'Best web design company in Sri Lanka. We offer affordable web design, ecommerce development, and SEO services.')"> <meta name="keywords" content="@yield('meta_keywords', 'web design sri lanka, web development sri lanka')"> <!-- Fonts --> <link rel="preconnect" href="https://fonts.bunny.net"> <link href="https://fonts.bunny.net/css?family=inter:400,500,600,700&display=swap" rel="stylesheet" /> <!-- Scripts --> @vite(['resources/css/app.css', 'resources/js/app.js']) @stack('styles') </head> <body class="font-sans antialiased text-gray-900 bg-gray-50 flex flex-col min-h-screen"> <!-- Navigation --> <nav class="bg-navy text-white shadow-lg sticky top-0 z-50"> <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> <div class="flex justify-between h-20"> <div class="flex items-center"> <a href="/" class="flex-shrink-0 flex items-center"> <x-application-logo class="h-10 w-auto" /> </a> </div> <div class="hidden sm:flex sm:items-center sm:space-x-8"> <a href="/" class="hover:text-orange transition-colors duration-200 font-medium">Home</a> <a href="/about" class="hover:text-orange transition-colors duration-200 font-medium">About Us</a> <a href="/services" class="hover:text-orange transition-colors duration-200 font-medium">Services</a> <a href="/pricing" class="hover:text-orange transition-colors duration-200 font-medium">Pricing</a> <a href="/contact" class="hover:text-orange transition-colors duration-200 font-medium">Contact Us</a> </div> <div class="hidden sm:flex sm:items-center"> @auth <div class="flex items-center gap-3"> <a href="{{ url('/dashboard') }}" class="flex items-center gap-2 bg-orange hover:bg-orange-dark text-white px-5 py-2 rounded-md font-semibold transition-colors duration-200"> <img class="h-5 w-5 rounded-full object-cover" src="{{ Auth::user()->profile_photo_url }}" alt=""> {{ Auth::user()->name }} </a> </div> @else <a href="{{ route('login') }}" class="bg-orange hover:bg-orange-dark text-white px-5 py-2 rounded-md font-semibold transition-colors duration-200">Client Login</a> @endauth </div> </div> </div> </nav> <!-- Main Content --> <main class="flex-grow"> @yield('content') </main> <!-- Footer --> <footer class="bg-navy-dark text-gray-300 py-12 mt-auto"> <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 grid grid-cols-1 md:grid-cols-4 gap-8"> <div> <h3 class="text-xl font-bold text-white mb-4">Webspark<span class="text-orange">IT</span></h3> <p class="text-sm">The best web design company in Sri Lanka. We build digital experiences that grow your business.</p> </div> <div> <h4 class="text-lg font-semibold text-white mb-4">Quick Links</h4> <ul class="space-y-2 text-sm"> <li><a href="/about" class="hover:text-orange transition-colors">About Us</a></li> <li><a href="/services" class="hover:text-orange transition-colors">Services</a></li> <li><a href="/pricing" class="hover:text-orange transition-colors">Pricing</a></li> <li><a href="/contact" class="hover:text-orange transition-colors">Contact</a></li> </ul> </div> <div> <h4 class="text-lg font-semibold text-white mb-4">Services</h4> <ul class="space-y-2 text-sm"> <li><a href="/services#ecommerce" class="hover:text-orange transition-colors">Ecommerce Website Development Sri Lanka</a></li> <li><a href="/services#seo" class="hover:text-orange transition-colors">SEO Services Sri Lanka</a></li> <li><a href="/services#ai" class="hover:text-orange transition-colors">AI Web Design Sri Lanka</a></li> </ul> </div> <div> <h4 class="text-lg font-semibold text-white mb-4">Contact</h4> <ul class="space-y-2 text-sm"> <li>Email: system@websparkit.com</li> <li>Location: Sri Lanka</li> </ul> </div> </div> <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 mt-8 pt-8 border-t border-navy-light text-center text-sm"> © {{ date('Y') }} WebsparkIT. All rights reserved. </div> </footer> @stack('scripts') </body> </html>
Save Changes
Cancel
Create New File
Create New Folder