-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Raccoon254/changes
Changes
- Loading branch information
Showing
16 changed files
with
123 additions
and
28 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers; | ||
|
||
use Illuminate\View\View; | ||
|
||
class PagesController extends Controller | ||
{ | ||
public function dashboard(): View | ||
{ | ||
return view('dashboard'); | ||
} | ||
} |
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 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers; | ||
|
||
use Illuminate\View\View; | ||
|
||
class StaticPageController extends Controller | ||
{ | ||
public function welcome(): View | ||
{ | ||
$process_steps = [ | ||
[ | ||
'icon' => 'fa-solid avatar fa-pen-nib', | ||
'color' => 'text-blue-500', | ||
'title' => 'Place Your Order', | ||
'text' => 'Submit your assignment details, including the topic, instructions, and due date.' | ||
], | ||
[ | ||
'icon' => 'fas fa-user-graduate', | ||
'color' => 'text-green-500', | ||
'title' => 'Hire a Writer', | ||
'text' => 'Our expert writers will review your order and start working on it immediately.' | ||
], | ||
[ | ||
'icon' => 'fas fa-check-circle', | ||
'color' => 'text-yellow-500', | ||
'title' => 'Get Your Assignment', | ||
'text' => 'Receive your high-quality assignment before the due date, reviewed and ready for submission.' | ||
] | ||
]; | ||
return view('welcome')->with('process_steps', $process_steps); | ||
} | ||
} | ||
|
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Binary file not shown.
Binary file not shown.
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,3 +1,7 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
.center{ | ||
@apply flex items-center justify-center; | ||
} |
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
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
Binary file not shown.