Skip to content

Commit

Permalink
Created logged layout and about page
Browse files Browse the repository at this point in the history
  • Loading branch information
Raccoon254 committed May 27, 2024
1 parent 8a937e6 commit bf591d5
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 7 deletions.
22 changes: 22 additions & 0 deletions resources/views/components/logged-out.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>
{{ $title ?? 'Scholarspace' }}
</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet"/>
@vite(['resources/css/app.css', 'resources/js/app.js'])
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">

</head>
<body class="font-sans min-h-screen bg-gray-50 antialiased">
@include('layouts.navigation.logged-out')
{{ $slot }}
</body>
</html>
7 changes: 0 additions & 7 deletions resources/views/contact.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@
<link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet"/>
@vite(['resources/css/app.css', 'resources/js/app.js'])
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">

<style>
.custom-btn {
@apply bg-blue-500 text-white hover:bg-blue-600 font-semibold py-2 px-4 rounded-md;
}
</style>

</head>
<body class="font-sans min-h-screen bg-gray-50 antialiased">
@include('layouts.navigation.logged-out')
Expand Down
41 changes: 41 additions & 0 deletions resources/views/static/about.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<x-logged-out>
<!-- Title -->
<x-slot name="title">
About Us
</x-slot>

<div class="bg-gray-50 min-h-screen">
<div class="container mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="mb-8 md:mb-0 md:w-1/2">
<h1 class="text-4xl font-bold text-black/90 leading-snug mb-4">About Us</h1>
<p class="text-lg text-black/50 mb-8">At Scholarspace, we are dedicated to providing top-notch academic writing services to students worldwide. Our team of experienced writers and editors are committed to delivering high-quality, plagiarism-free content tailored to your specific needs.</p>
<p class="text-lg text-black/50 mb-8">With years of experience in the industry, we understand the challenges students face when it comes to balancing coursework, extracurricular activities, and personal commitments. That's why we strive to make the writing process as stress-free as possible for you.</p>
<a href="#" class="custom-btn">Learn More</a>
</div>
<div class="md:w-1/2">
<img src="{{ asset('images/svg1.png') }}" alt="About Us" class="w-full max-w-md mx-auto rounded-lg">
</div>
</div>
</div>

<div class="bg-gray-100 py-12">
<div class="container mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="mb-8 md:mb-0 md:w-1/2">
<h2 class="text-3xl font-bold text-black/90 mb-4">Our Core Values</h2>
<ul class="text-lg text-black/50 list-disc pl-6">
<li class="mb-2">Integrity and honesty in all our dealings</li>
<li class="mb-2">Commitment to delivering quality work</li>
<li class="mb-2">Respect for academic integrity and plagiarism-free content</li>
<li class="mb-2">Timely delivery and excellent customer service</li>
</ul>
</div>
<div class="md:w-1/2">
<img src="{{ asset('images/svg2.png') }}" alt="Core Values" class="w-full max-w-md mx-auto rounded-lg">
</div>
</div>
</div>
</div>
</div>
</x-logged-out>

0 comments on commit bf591d5

Please sign in to comment.