sliders done
@ -23,16 +23,16 @@ class CompanyController extends Controller
|
||||
{
|
||||
// Store the validated data from the form
|
||||
$validatedData = $request->validated();
|
||||
|
||||
|
||||
// Handle the logo upload if it exists
|
||||
if ($request->hasFile('logo')) {
|
||||
$logoPath = $request->file('logo')->store('logos', 'public');
|
||||
$validatedData['logo'] = $logoPath;
|
||||
}
|
||||
|
||||
|
||||
// Create the company with the validated data
|
||||
$company = \App\Models\Company::create($validatedData);
|
||||
|
||||
$company = Company::create($validatedData);
|
||||
|
||||
// Redirect or return a response
|
||||
return redirect()->route('companies.index')->with('success', 'Company created successfully.');
|
||||
}
|
||||
@ -51,20 +51,20 @@ class CompanyController extends Controller
|
||||
{
|
||||
// Store the validated data from the form
|
||||
$validatedData = $request->validated();
|
||||
|
||||
|
||||
// Handle the logo upload if it exists
|
||||
if ($request->hasFile('logo')) {
|
||||
$logoPath = $request->file('logo')->store('logos', 'public');
|
||||
$validatedData['logo'] = $logoPath;
|
||||
}
|
||||
|
||||
|
||||
// Update the company with the validated data
|
||||
$company->update($validatedData);
|
||||
|
||||
|
||||
// Redirect or return a response
|
||||
return redirect()->route('companies.index')->with('success', 'Company updated successfully.');
|
||||
}
|
||||
|
||||
|
||||
public function destroy(Company $company)
|
||||
{
|
||||
$company->delete();
|
||||
|
45
app/Http/Controllers/FrontendController.php
Normal file
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
// app/Http/Controllers/FrontendController.php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\Post;
|
||||
use App\Models\Slider;
|
||||
|
||||
class FrontendController extends Controller
|
||||
{
|
||||
public function homePage()
|
||||
{
|
||||
$data['sliderItems'] = Slider::all();
|
||||
// $data['preparations'] = Preparation::all();
|
||||
// $data['services'] = Service::all();
|
||||
// $data['about'] = About::all();
|
||||
// $data['contact'] = Contact::first();
|
||||
// $data['testimonials'] = Testimonial::all();
|
||||
// $data['partners'] = Partner::all();
|
||||
// $data['passers'] = Passer::all();
|
||||
// $data['blogs'] = Blog::latest()->take(3)->get();
|
||||
|
||||
return view('frontend.home',$data);
|
||||
}
|
||||
public function aboutPage()
|
||||
{
|
||||
$posts = Post::all();
|
||||
return view('frontend.about', compact('posts'));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
slider
|
||||
preparation
|
||||
service
|
||||
about
|
||||
contact
|
||||
testimonial
|
||||
partners
|
||||
passers
|
||||
blog
|
||||
*/
|
@ -58,4 +58,5 @@ class PostController extends Controller
|
||||
|
||||
return redirect()->route('posts.index')->with('success', 'Post deleted successfully.');
|
||||
}
|
||||
|
||||
}
|
||||
|
80
app/Http/Controllers/PreparationController.php
Normal file
@ -0,0 +1,80 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Preparation;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class PreparationController extends Controller
|
||||
{
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$preparations = PreparationController::all();
|
||||
return view('preparation.index', compact('preparations'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for creating a new resource.
|
||||
*/
|
||||
public function create()
|
||||
{
|
||||
return view('posts.create');
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a newly created resource in storage.
|
||||
*/
|
||||
public function store(Request $request)
|
||||
{
|
||||
$validated = $request->validate([
|
||||
'title' => 'required|string|max:225',
|
||||
'content' => 'required|string',
|
||||
]);
|
||||
|
||||
Preparation::create($validated);
|
||||
return redirect()->route('preparation.index')->with('success', 'Preparation created successfully');
|
||||
}
|
||||
|
||||
/**
|
||||
* Display the specified resource.
|
||||
*/
|
||||
public function show(string $id)
|
||||
{
|
||||
return view('preparations.show', compact('preparation'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*/
|
||||
public function edit(string $id)
|
||||
{
|
||||
return view('preparations.edit', compact('preparation'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*/
|
||||
public function update(Request $request, Preparation $preparation)
|
||||
{
|
||||
$validated = $request->validate([
|
||||
'title' => 'required|string|max:225',
|
||||
'content' => 'required|string',
|
||||
]);
|
||||
|
||||
$preparation->update($validated);
|
||||
return redirect()->route('preparation.index')->with('success', 'Preparation updated successfully');
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
*/
|
||||
public function destroy(Preparation $preparation)
|
||||
{
|
||||
$preparation->delete();
|
||||
|
||||
return redirect()->route('preparation.index')->with('success', 'Preparation deleted successfully');
|
||||
}
|
||||
}
|
92
app/Http/Controllers/SliderController.php
Normal file
@ -0,0 +1,92 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Models\Slider;
|
||||
|
||||
class SliderController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$sliders = Slider::all();
|
||||
return view('sliders.index', compact('sliders'));
|
||||
}
|
||||
|
||||
public function create()
|
||||
{
|
||||
return view('sliders.create');
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
{
|
||||
if ($request->hasFile('logo')) {
|
||||
$logoPath = $request->file('logo')->store('logos', 'public');
|
||||
$validatedData['logo'] = $logoPath;
|
||||
}
|
||||
// $imagePath = $request->file('image')->store('sliders', 'public');
|
||||
$slider = Slider::create([
|
||||
'title' => $request->title,
|
||||
'subtitle' => $request->subtitle,
|
||||
'description' => $request->description,
|
||||
// 'image' => hasFile('image'),
|
||||
'button_text' => $request->button_text,
|
||||
'button_url' => $request->button_url,
|
||||
]);
|
||||
return redirect()->route('sliders.index')->with('success', 'Slider created successfully');
|
||||
}
|
||||
|
||||
public function destroy($id)
|
||||
{
|
||||
$slider = Slider::findOrFail($id);
|
||||
|
||||
// Optionally delete the image from storage
|
||||
if ($slider->image && \Storage::disk('public')->exists($slider->image)) {
|
||||
\Storage::disk('public')->delete($slider->image);
|
||||
}
|
||||
|
||||
$slider->delete();
|
||||
|
||||
return redirect()->route('sliders.index')->with('success', 'Slider deleted successfully');
|
||||
}
|
||||
public function show($id)
|
||||
{
|
||||
$slider = Slider::findOrFail($id);
|
||||
return view('sliders.show', compact('slider'));
|
||||
}
|
||||
|
||||
public function edit($id)
|
||||
{
|
||||
$slider = Slider::findOrFail($id);
|
||||
return view('sliders.edit', compact('slider'));
|
||||
}
|
||||
|
||||
public function update(Request $request, Slider $slider)
|
||||
{
|
||||
// dd($slider->toArray());
|
||||
$validated = $request->validate([
|
||||
'title' => 'nullable|string|max:255',
|
||||
'subtitle' => 'nullable|string|max:255',
|
||||
'description' => 'nullable|string',
|
||||
'button_text' => 'nullable|string|max:255',
|
||||
'button_url' => 'nullable|string|max:255',
|
||||
'image' => 'nullable|image',
|
||||
]);
|
||||
|
||||
// If image is uploaded
|
||||
if ($request->hasFile('image')) {
|
||||
// Delete old image if exists
|
||||
if ($slider->image && \Storage::disk('public')->exists($slider->image)) {
|
||||
\Storage::disk('public')->delete($slider->image);
|
||||
}
|
||||
$imagePath = $request->file('image')->store('sliders', 'public');
|
||||
$validated['image'] = $imagePath;
|
||||
}
|
||||
|
||||
$slider->update($validated);
|
||||
|
||||
return redirect()->route('sliders.index')->with('success', 'Slider updated successfully');
|
||||
}
|
||||
|
||||
}
|
||||
|
10
app/Models/Preparation.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Preparation extends Model
|
||||
{
|
||||
protected $fillable = ['title', 'content'];
|
||||
}
|
14
app/Models/Slider.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Slider extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
protected $fillable = ['title', 'subtitle', 'description', 'image', 'button_text', 'button_url'];
|
||||
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('sliders', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('title')->nullable();
|
||||
$table->string('subtitle')->nullable();
|
||||
$table->string('description')->nullable();
|
||||
$table->string('image')->nullable();
|
||||
$table->string('button_text')->nullable();
|
||||
$table->string('button_url')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('sliders');
|
||||
}
|
||||
};
|
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('preparations', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('title')->nullable();
|
||||
$table->string('content')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('preparations');
|
||||
}
|
||||
};
|
BIN
public/assets/images/FB_IMG_1688896095212.jpg
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
public/assets/images/IMG_3272-1-1024x604.jpg
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
public/assets/images/IMG_3273-1-1024x383.jpg
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
public/assets/images/IMG_3274-1-1024x526.jpg
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
public/assets/images/IMG_3275-1-1024x434.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
public/assets/images/IMG_3276-1-1024x541.jpg
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
public/assets/images/IMG_3277-1-1024x565.jpg
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
public/assets/images/RESIZED-1.png
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
public/assets/images/achivement/01.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
public/assets/images/achivement/02.png
Normal file
After Width: | Height: | Size: 866 KiB |
BIN
public/assets/images/achivement/03.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
9
public/assets/images/ambulance.svg
Normal file
@ -0,0 +1,9 @@
|
||||
<svg height="512pt" viewBox="0 -54 512 511" width="512pt" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #ffffff;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="m512 227.785156c0-26.3125-21.40625-47.71875-47.71875-47.71875h-22.785156l-66.425782-119.871094h-38.070312v-14.445312c0-24.949219-20.300781-45.25-45.25-45.25s-45.25 20.300781-45.25 45.25v14.441406h-246.5v292.113282h53.882812c3.285157 29.167968 28.089844 51.914062 58.117188 51.914062s54.832031-22.746094 58.117188-51.914062h173.570312c3.289062 29.167968 28.089844 51.914062 58.121094 51.914062 30.027344 0 54.832031-22.746094 58.117187-51.914062h52.074219zm-104.800781-47.71875h-102.164063v-89.875h52.363282zm-130.699219-134.316406c0-8.410156 6.839844-15.25 15.25-15.25s15.25 6.84375 15.25 15.25v14.441406h-30.5zm-246.5 44.445312h245.035156v232.113282h-109.4375c-9.050781-20.636719-29.664062-35.089844-53.597656-35.089844s-44.546875 14.457031-53.597656 35.089844h-28.402344zm82 284.023438c-15.714844 0-28.5-12.785156-28.5-28.5s12.785156-28.5 28.5-28.5 28.5 12.785156 28.5 28.5-12.785156 28.5-28.5 28.5zm289.808594 0c-15.714844 0-28.5-12.785156-28.5-28.5s12.785156-28.5 28.5-28.5 28.5 12.785156 28.5 28.5-12.785156 28.5-28.5 28.5zm80.191406-51.910156h-26.597656c-9.046875-20.636719-29.660156-35.089844-53.59375-35.089844-23.9375 0-44.546875 14.457031-53.597656 35.089844h-43.175782v-112.242188h159.246094c9.769531 0 17.71875 7.949219 17.71875 17.714844zm0 0"/><path class="cls-1" d="m136.167969 250.394531h30v-34.25h34.25v-30h-34.25v-34.25h-30v34.25h-34.25v30h34.25zm0 0"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
BIN
public/assets/images/arrow.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
public/assets/images/author-sign.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
public/assets/images/bg-image/col-bgimage-1.png
Normal file
After Width: | Height: | Size: 822 KiB |
BIN
public/assets/images/bg-image/col-bgimage-10.png
Normal file
After Width: | Height: | Size: 20 MiB |
BIN
public/assets/images/bg-image/col-bgimage-11.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
public/assets/images/bg-image/col-bgimage-2.png
Normal file
After Width: | Height: | Size: 273 KiB |
BIN
public/assets/images/bg-image/col-bgimage-3.jpg
Normal file
After Width: | Height: | Size: 584 KiB |
BIN
public/assets/images/bg-image/col-bgimage-4.jpg
Normal file
After Width: | Height: | Size: 435 KiB |
BIN
public/assets/images/bg-image/col-bgimage-5.png
Normal file
After Width: | Height: | Size: 151 KiB |
BIN
public/assets/images/bg-image/col-bgimage-6.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
public/assets/images/bg-image/col-bgimage-7.png
Normal file
After Width: | Height: | Size: 185 KiB |
BIN
public/assets/images/bg-image/col-bgimage-8.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
public/assets/images/bg-image/col-bgimage-9.png
Normal file
After Width: | Height: | Size: 35 MiB |
BIN
public/assets/images/bg-image/row-bgimage-2.jpg
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
public/assets/images/bg-image/row-bgimage-3.png
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
public/assets/images/bg-image/row-bgimage-4.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
public/assets/images/bg-image/row-bgimage-5.png
Normal file
After Width: | Height: | Size: 59 KiB |
BIN
public/assets/images/bg-image/row-bgimage-6.png
Normal file
After Width: | Height: | Size: 198 KiB |
BIN
public/assets/images/bg-image/row-bgimage-7.png
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
public/assets/images/bg-image/row-bgimage-8.jpg
Normal file
After Width: | Height: | Size: 81 KiB |
BIN
public/assets/images/bg-image/row-bgimage-9.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
public/assets/images/blog/blog-01.jpg
Normal file
After Width: | Height: | Size: 145 KiB |
BIN
public/assets/images/blog/blog-02.jpg
Normal file
After Width: | Height: | Size: 96 KiB |
BIN
public/assets/images/blog/blog-03.jpg
Normal file
After Width: | Height: | Size: 106 KiB |
BIN
public/assets/images/blog/blog-04.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
public/assets/images/blog/blog-05.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/assets/images/blog/blog-06.jpg
Normal file
After Width: | Height: | Size: 304 KiB |
BIN
public/assets/images/blog/blog-07.jpg
Normal file
After Width: | Height: | Size: 340 KiB |
BIN
public/assets/images/blog/blog-08.jpg
Normal file
After Width: | Height: | Size: 320 KiB |
BIN
public/assets/images/blog/blog-09.jpg
Normal file
After Width: | Height: | Size: 298 KiB |
BIN
public/assets/images/blog/blog-10.jpg
Normal file
After Width: | Height: | Size: 313 KiB |
BIN
public/assets/images/blog/blog-14.jpg
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
public/assets/images/blog/blog-15.jpg
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
public/assets/images/blog/blog-16.jpg
Normal file
After Width: | Height: | Size: 74 KiB |
BIN
public/assets/images/blog/blog-17.jpg
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
public/assets/images/blog/blog-18.jpg
Normal file
After Width: | Height: | Size: 61 KiB |
1
public/assets/images/cardiology.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg id="Capa_1" enable-background="new 0 0 512 512" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><path d="m256 476.983c-10.407 0-20.349-3.886-27.992-10.943l-178.656-164.954c-31.364-28.958-49.352-70.037-49.352-112.704 0-84.566 68.8-153.365 153.365-153.365 37.996 0 74.61 14.206 102.635 39.417 28.024-25.211 64.639-39.417 102.635-39.417 84.565 0 153.365 68.799 153.365 153.365 0 42.667-17.988 83.747-49.352 112.705l-177.702 164.043c-7.767 7.646-18.033 11.853-28.946 11.853z" fill="#ff5b6e"/><path d="m358.635 35.017c-37.996 0-74.61 14.206-102.635 39.417v402.549c10.913 0 21.179-4.207 28.946-11.854l177.702-164.043c31.364-28.958 49.352-70.037 49.352-112.704 0-84.566-68.8-153.365-153.365-153.365z" fill="#db2e43"/><path d="m307.133 262.572c-4.959 0-9.598 2.451-12.392 6.547l-28.583 41.902-32.087-111.873c-1.688-5.886-6.785-10.154-12.875-10.785-6.091-.63-11.953 2.505-14.811 7.92l-34.976 66.287h-152.212c5.952 10.777 13.196 20.869 21.637 30h139.622c5.563 0 10.67-3.08 13.267-8l21.793-41.304 30.613 106.733c1.604 5.59 6.293 9.749 12.034 10.673.798.128 1.596.191 2.388.191 4.905 0 9.567-2.412 12.389-6.548l42.119-61.747h156.107c8.44-9.131 15.685-19.223 21.637-30h-185.67z" fill="#f2f4f7"/><path d="m307.133 262.572c-4.959 0-9.598 2.451-12.392 6.547l-28.583 41.902-10.158-35.416v84.553c.701.223 1.423.398 2.163.517.798.128 1.596.191 2.388.191 4.905 0 9.567-2.412 12.389-6.548l42.119-61.747h156.107c8.44-9.131 15.685-19.223 21.637-30h-185.67z" fill="#c7e7ff"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
BIN
public/assets/images/client/client-01.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
public/assets/images/client/client-02.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
public/assets/images/client/client-03.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
public/assets/images/client/client-04.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
public/assets/images/client/client-05.png
Normal file
After Width: | Height: | Size: 8.0 KiB |
BIN
public/assets/images/client/client-06.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
public/assets/images/e10155e4-bf18-43a3-8fb5-016d06b820fd.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
public/assets/images/error-404.png
Normal file
After Width: | Height: | Size: 123 KiB |
BIN
public/assets/images/favicon.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
public/assets/images/footer-post-01.jpg
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
public/assets/images/footer-post-02.jpg
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
public/assets/images/graduation.jpg
Normal file
After Width: | Height: | Size: 118 KiB |
1
public/assets/images/healthcare.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g id="healthcare-covid19-coronavirus-hand-hearth"><path d="m15.71 30.27-4.53-13.05a3.125 3.125 0 0 0 -3.56-2.32 3.007 3.007 0 0 0 -2.28 3.71l4.66 14.39z" fill="#ffac96"/><path d="m48.29 30.27 4.53-13.05a3.125 3.125 0 0 1 3.56-2.32 3.007 3.007 0 0 1 2.28 3.71l-4.66 14.39z" fill="#ffac96"/><path d="m25.046 35.682-8.84-5.182a2.994 2.994 0 0 0 -3.8.679l-3.226-9.959a3.125 3.125 0 0 0 -3.56-2.32 3.007 3.007 0 0 0 -2.28 3.71l4.35 16.23a3.948 3.948 0 0 0 1.21 1.96l6.76 6.01a4 4 0 0 1 1.34 2.99v3.2h12v-10.416a8 8 0 0 0 -3.954-6.902z" fill="#ffbcab"/><path d="m58.38 18.9a3.125 3.125 0 0 0 -3.56 2.32l-3.23 9.959a2.994 2.994 0 0 0 -3.8-.679l-8.84 5.182a8 8 0 0 0 -3.95 6.902v10.416h12v-3.2a4 4 0 0 1 1.34-2.99l6.76-6.01a3.948 3.948 0 0 0 1.21-1.96l4.35-16.23a3.007 3.007 0 0 0 -2.28-3.71z" fill="#ffbcab"/><path d="m34 53v8h14v-8h-1-12z" fill="#006df0"/><path d="m30 53h-1-12-1v8h14z" fill="#006df0"/><path d="m45.44 18.56-.71.71-12.73 12.73-12.73-12.73-.71-.71a9 9 0 1 1 12.73-12.72l.71.71.71-.71a9 9 0 1 1 12.73 12.72z" fill="#d80027"/><path d="m45.44 5.84a8.9 8.9 0 0 0 -7.368-2.579 8.994 8.994 0 0 1 5.368 15.3l-.71.71-11.73 11.729 1 1 12.73-12.73.71-.71a9 9 0 0 0 0-12.72z" fill="#bd0022"/><path d="m34 22v-4h4v-4h-4v-4h-4v4h-4v4h4v4z" fill="#f1f2f2"/><g fill="#ffac96"><path d="m50.794 33.7-6.684 3.7a.867.867 0 0 0 -.341 1.138.865.865 0 0 0 1.207.362l5.818-3.2a3 3 0 0 0 1.319-3.609 2.971 2.971 0 0 1 -1.319 1.609z"/><path d="m13.206 33.7 6.684 3.7a.867.867 0 0 1 .341 1.138.865.865 0 0 1 -1.207.362l-5.818-3.2a3 3 0 0 1 -1.319-3.609 2.971 2.971 0 0 0 1.319 1.609z"/></g></g></svg>
|
After Width: | Height: | Size: 1.6 KiB |
36
public/assets/images/heart-icon.svg
Normal file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="512" height="512" viewBox="0 0 57.696 57.695" style="enable-background:new 0 0 57.696 57.695;" xml:space="preserve">
|
||||
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #ffffff;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
|
||||
<path class="cls-1" d="M10.902,19.22c-0.32,0-0.645-0.084-0.94-0.259c-0.877-0.521-1.166-1.653-0.646-2.53 c3.455-5.822,3.466-8.958,0.043-11.568C8.548,4.244,8.392,3.086,9.011,2.275c0.618-0.811,1.775-0.968,2.587-0.349 c7.309,5.574,2.813,13.152,0.894,16.389C12.146,18.896,11.532,19.22,10.902,19.22z"/>
|
||||
|
||||
<path class="cls-1" d="M21.243,11.978c-0.119,0-0.24-0.012-0.361-0.036c-1-0.198-1.65-1.17-1.452-2.17 c0.332-1.67-0.584-4.522-2.936-6.519c-0.777-0.66-0.873-1.825-0.212-2.603c0.661-0.775,1.825-0.872,2.602-0.212 c3.105,2.637,4.819,6.77,4.168,10.052C22.877,11.369,22.106,11.978,21.243,11.978z"/>
|
||||
|
||||
<path class="cls-1" d="M40.215,57.695c-1.058,0-2.14-0.04-3.238-0.121C26.583,56.808,17.578,52.592,12.27,46.01 c-4.041-5.012-5.89-10.719-5.494-16.962c0.064-1.019,0.959-1.766,1.959-1.727c1.018,0.064,1.79,0.941,1.726,1.959 c-0.34,5.368,1.192,10.082,4.684,14.411c4.669,5.791,12.727,9.509,22.105,10.2c6.812,0.506,13.188-0.798,15.91-3.241 c0.779-1.268,1.705-9.357-0.745-18.52c-1.651-6.173-5.294-14.335-13.272-18.167c-0.919-0.441-1.306-1.544-0.864-2.463 c0.44-0.921,1.543-1.309,2.463-0.865c11.707,5.623,15.293,18.762,16.389,26.094c0.974,6.513,0.811,14.538-1.408,16.582 C52.7,56.097,46.929,57.695,40.215,57.695z"/>
|
||||
|
||||
<path class="cls-1" d="M24.471,25.663c-0.038,0-0.077-0.001-0.115-0.003c-1.018-0.063-1.792-0.938-1.729-1.956 c0.733-11.948,7.71-18.214,19.62-17.621C43.265,6.133,44.05,6.999,44,8.018c-0.05,1.018-0.912,1.816-1.935,1.753 c-9.841-0.487-15.147,4.28-15.754,14.16C26.251,24.909,25.438,25.663,24.471,25.663z"/>
|
||||
|
||||
<path class="cls-1" d="M19.206,17.403c-0.105,0-0.213-0.01-0.32-0.028c-1.004-0.176-1.676-1.133-1.5-2.137 C18.711,7.666,25.639,0,36.313,0c1.02,0,1.847,0.826,1.847,1.846s-0.827,1.846-1.847,1.846c-8.638,0-14.231,6.129-15.292,12.184 C20.865,16.771,20.085,17.403,19.206,17.403z"/>
|
||||
|
||||
<path class="cls-1" d="M17.945,22.964c-0.44,0-0.881-0.156-1.234-0.473C12.72,18.902,5.982,17.715,2.43,18.902 c-0.965,0.323-2.012-0.201-2.334-1.169c-0.322-0.967,0.201-2.013,1.168-2.335c4.59-1.527,12.747-0.302,17.916,4.347 c0.758,0.683,0.82,1.85,0.138,2.607C18.954,22.758,18.45,22.964,17.945,22.964z"/>
|
||||
|
||||
<path class="cls-1" d="M12.407,27.768c-0.402,0-0.807-0.13-1.146-0.399c-2.25-1.785-6.253-1.903-8.878-1.105 c-0.978,0.293-2.007-0.255-2.303-1.23c-0.296-0.976,0.255-2.007,1.23-2.303c3.499-1.062,8.823-0.968,12.245,1.746 c0.799,0.634,0.933,1.795,0.299,2.594C13.49,27.528,12.951,27.768,12.407,27.768z"/>
|
||||
|
||||
<path class="cls-1" d="M17.721,57.112c-0.042,0-0.083-0.001-0.125-0.004c-1.013-0.068-1.781-0.935-1.72-1.948 c0.008-0.135,0.227-3.333,2.447-6.084c0.641-0.792,1.804-0.916,2.596-0.276c0.793,0.641,0.917,1.803,0.277,2.597 c-1.459,1.807-1.634,3.978-1.636,3.999C19.49,56.366,18.68,57.112,17.721,57.112z"/>
|
||||
|
||||
<path class="cls-1" d="M8.783,56.275c-0.9-1.393,0.848-6.409,1.398-7.633c0.418-0.93,1.513-1.342,2.441-0.926 c0.93,0.418,1.345,1.511,0.926,2.441c-1.227,2.728-1.37,5.178-1.371,5.202l-1.834-0.098l-0.01,0.01L8.783,56.275z"/>
|
||||
|
||||
<path class="cls-1" d="M38.445,44.246c-0.224,0-0.451-0.041-0.673-0.128c-0.949-0.371-1.418-1.442-1.046-2.392 c1.777-4.543,1.659-9.246-0.333-13.242c-1.519-3.047-4.005-5.372-6.488-6.067c-0.982-0.274-1.555-1.293-1.28-2.275 c0.275-0.981,1.294-1.556,2.276-1.279c3.509,0.981,6.797,3.963,8.797,7.975c2.464,4.942,2.629,10.708,0.467,16.235 C39.88,43.801,39.183,44.246,38.445,44.246z"/>
|
||||
|
||||
<path class="cls-1" d="M46.284,32.206c-0.723,0-1.409-0.428-1.705-1.137c-1.253-3.005-4.024-2.773-6.131-2.048 c-0.964,0.335-2.015-0.181-2.347-1.144c-0.332-0.964,0.18-2.015,1.145-2.347c4.868-1.677,8.985-0.099,10.741,4.118 c0.393,0.941-0.053,2.021-0.994,2.414C46.762,32.16,46.521,32.206,46.284,32.206z"/>
|
||||
|
||||
</svg>
|
After Width: | Height: | Size: 4.2 KiB |
1
public/assets/images/heart.svg
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
public/assets/images/icon-01.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
19
public/assets/images/logo-dark.svg
Normal file
@ -0,0 +1,19 @@
|
||||
<svg id="_01" data-name="01" xmlns="http://www.w3.org/2000/svg" width="202.719" height="63.344" viewBox="0 0 202.719 63.344">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #2a334e;
|
||||
}
|
||||
|
||||
.cls-1, .cls-2 {
|
||||
fill-rule: evenodd;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: #33d687;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path id="dezily" class="cls-1" d="M75.312,48h9.522q5.841,0,8.3-1.311a5.977,5.977,0,0,0,3.082-4.324,57.36,57.36,0,0,0,.621-10.189,57.366,57.366,0,0,0-.621-10.189,5.979,5.979,0,0,0-3.082-4.324q-2.461-1.311-8.3-1.311H75.312V48Zm5.842-5.06V21.412h3.4a13.3,13.3,0,0,1,4.531.506,3.05,3.05,0,0,1,1.518,2.53,55.6,55.6,0,0,1,.345,7.728,55.582,55.582,0,0,1-.345,7.728,3.048,3.048,0,0,1-1.518,2.53,13.286,13.286,0,0,1-4.531.506h-3.4ZM121.128,48V42.94h-12.65V34.568h10.9V29.462h-10.9v-8.05h12.65v-5.06H102.636V48h18.492Zm24.563,0V42.94H132.029l13.524-21.85V16.352H125.5v5.06h12.972L125.037,43.17V48h20.654Zm10.948,0V16.352h-5.888V48h5.888Zm23.643,0V42.756H169.1v-26.4h-5.842V48h17.02Zm13.064,0V36.776l9.384-20.424H196.8l-6.072,14.122H190.4l-6.164-14.122H178.12l9.338,20.424V48h5.888Z"/>
|
||||
<path id="Shape_8_copy_2" data-name="Shape 8 copy 2" class="cls-2" d="M43.629,46.738c1.07-5.763,8.265-8.8,8.305-12.911,0.007-.745-0.709-2.165-1.308-1.728C40.474,39.518,30.182,46.582,32.8,63.349,54.845,53.75,64.663,37.98,65.723,19.66,61.1,17.674,59.3,41.448,43.629,46.738ZM36.506,19.543H29.251v7.693H21.61v7.305h7.641v7.693h7.256V34.541h7.641v-7.3H36.506V19.543Zm29.1-3.1C64.775,9.02,60.834,3.438,54.8,1.13,48.014-1.462,39.919.459,32.878,6.257c-7.04-5.8-15.135-7.719-21.917-5.127C4.923,3.438.982,9.02,0.15,16.444A26.674,26.674,0,0,0,3.721,32.662c6.093,10.489,16.036,19.745,26.124,28.2a31.361,31.361,0,0,1-.01-4.906c-8.978-7.678-17.562-16-22.9-25.188a22.881,22.881,0,0,1-3.085-13.9c0.67-5.98,3.744-10.438,8.432-12.229a13.739,13.739,0,0,1,4.929-.888c4.711,0,9.828,2.212,14.42,6.374l1.245,1.129,1.246-1.129c6.26-5.673,13.492-7.724,19.35-5.486,4.688,1.792,7.761,6.249,8.432,12.229q0.083,0.738.109,1.484a4.375,4.375,0,0,1,3.166-1.467,3.849,3.849,0,0,1,.472.03Q65.633,16.678,65.606,16.444Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
19
public/assets/images/logo-img.svg
Normal file
@ -0,0 +1,19 @@
|
||||
<svg id="_01" data-name="01" xmlns="http://www.w3.org/2000/svg" width="202.719" height="63.344" viewBox="0 0 202.719 63.344">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.cls-1, .cls-2 {
|
||||
fill-rule: evenodd;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: #33d687;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path id="dezily" class="cls-1" d="M75.312,48h9.522q5.841,0,8.3-1.311a5.977,5.977,0,0,0,3.082-4.324,57.36,57.36,0,0,0,.621-10.189,57.366,57.366,0,0,0-.621-10.189,5.979,5.979,0,0,0-3.082-4.324q-2.461-1.311-8.3-1.311H75.312V48Zm5.842-5.06V21.412h3.4a13.3,13.3,0,0,1,4.531.506,3.05,3.05,0,0,1,1.518,2.53,55.6,55.6,0,0,1,.345,7.728,55.582,55.582,0,0,1-.345,7.728,3.048,3.048,0,0,1-1.518,2.53,13.286,13.286,0,0,1-4.531.506h-3.4ZM121.128,48V42.94h-12.65V34.568h10.9V29.462h-10.9v-8.05h12.65v-5.06H102.636V48h18.492Zm24.563,0V42.94H132.029l13.524-21.85V16.352H125.5v5.06h12.972L125.037,43.17V48h20.654Zm10.948,0V16.352h-5.888V48h5.888Zm23.643,0V42.756H169.1v-26.4h-5.842V48h17.02Zm13.064,0V36.776l9.384-20.424H196.8l-6.072,14.122H190.4l-6.164-14.122H178.12l9.338,20.424V48h5.888Z"/>
|
||||
<path id="Shape_8_copy_2" data-name="Shape 8 copy 2" class="cls-2" d="M43.629,46.738c1.07-5.763,8.265-8.8,8.305-12.911,0.007-.745-0.709-2.165-1.308-1.728C40.474,39.518,30.182,46.582,32.8,63.349,54.845,53.75,64.663,37.98,65.723,19.66,61.1,17.674,59.3,41.448,43.629,46.738ZM36.506,19.543H29.251v7.693H21.61v7.305h7.641v7.693h7.256V34.541h7.641v-7.3H36.506V19.543Zm29.1-3.1C64.775,9.02,60.834,3.438,54.8,1.13,48.014-1.462,39.919.459,32.878,6.257c-7.04-5.8-15.135-7.719-21.917-5.127C4.923,3.438.982,9.02,0.15,16.444A26.674,26.674,0,0,0,3.721,32.662c6.093,10.489,16.036,19.745,26.124,28.2a31.361,31.361,0,0,1-.01-4.906c-8.978-7.678-17.562-16-22.9-25.188a22.881,22.881,0,0,1-3.085-13.9c0.67-5.98,3.744-10.438,8.432-12.229a13.739,13.739,0,0,1,4.929-.888c4.711,0,9.828,2.212,14.42,6.374l1.245,1.129,1.246-1.129c6.26-5.673,13.492-7.724,19.35-5.486,4.688,1.792,7.761,6.249,8.432,12.229q0.083,0.738.109,1.484a4.375,4.375,0,0,1,3.166-1.467,3.849,3.849,0,0,1,.472.03Q65.633,16.678,65.606,16.444Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
BIN
public/assets/images/logo.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
public/assets/images/nclex.jpg
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
public/assets/images/nurse.webp
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
public/assets/images/pagetitle-bg.jpg
Normal file
After Width: | Height: | Size: 7.0 MiB |
1
public/assets/images/pain.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg id="Слой_1" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g fill="#220dba"><path d="m111.08 512a4.16 4.16 0 0 1 -4.11-4.76c3.61-24.21 10-73.3 8.56-85.8-.58-5-1.48-19.37-2.73-39.33-2.92-46.61-7.8-124.62-14.56-175.31a4.15 4.15 0 1 1 8.22-1.1c6.8 51 11.69 129.16 14.61 175.88 1.24 19.82 2.14 34.15 2.69 38.87 2 16.72-8.17 85.09-8.6 88a4.15 4.15 0 0 1 -4.08 3.55z"/><path d="m16 340.25a4.15 4.15 0 0 1 -4.12-3.68c-11.61-102.79-7.49-166.33 13.42-206.03 20.31-38.54 55.12-51.41 95.19-63.15l1.45-.42c37.23-10.91 55.92-16.38 64.22-23.32 6.93-5.8 6.6-12.36 4.49-32.22-.23-2.16-.47-4.45-.71-6.86a4.15 4.15 0 1 1 8.25-.83c.24 2.4.48 4.67.71 6.82 2.1 19.69 3.23 30.54-7.42 39.44-9.62 8.05-28.87 13.69-67.21 24.92l-1.45.43c-38.22 11.2-71.39 23.37-90.18 59.05-19.81 37.6-23.78 101.6-12.48 201.24a4.15 4.15 0 0 1 -3.65 4.59z"/><path d="m496 340.25h-.47a4.15 4.15 0 0 1 -3.65-4.59c11.26-99.66 7.29-163.66-12.52-201.26-18.79-35.68-52-47.86-90.18-59.05l-1.45-.43c-38.34-11.22-57.59-16.86-67.21-24.92-10.65-8.91-9.5-19.76-7.42-39.46.23-2.15.47-4.41.71-6.82a4.15 4.15 0 1 1 8.25.83c-.24 2.42-.48 4.7-.71 6.86-2.11 19.86-2.44 26.43 4.49 32.22 8.29 6.94 27 12.41 64.22 23.32l1.45.42c40.07 11.76 74.88 24.63 95.19 63.17 20.91 39.7 25 103.24 13.38 206a4.15 4.15 0 0 1 -4.08 3.71z"/><path d="m400.92 512a4.15 4.15 0 0 1 -4.1-3.54c-.43-2.9-10.56-71.28-8.6-88 .56-4.73 1.45-19 2.69-38.87 2.92-46.72 7.82-124.92 14.61-175.89a4.15 4.15 0 1 1 8.22 1.1c-6.76 50.68-11.64 128.7-14.56 175.31-1.25 20-2.15 34.37-2.73 39.32-1.47 12.5 5 61.59 8.56 85.8a4.16 4.16 0 0 1 -4.11 4.76z"/></g><path d="m471 138.82c-17.08-32.47-47-43.43-84.44-54.39-78.86-23.07-84-23.42-83.08-66.67a13 13 0 0 0 -13-13.61h-68.89a13 13 0 0 0 -13 13.39v.22c.85 43.26-4.25 43.6-83.08 66.67-37.4 11-67.39 21.92-84.47 54.39-16.79 31.85-21.52 84.53-14.6 164.41.15 1.7.44 4.89.79 8.65a25.74 25.74 0 0 0 26.58 23.33l18.77-.71a25.73 25.73 0 0 0 24.67-27.89l-8.45-99.14a13.61 13.61 0 0 1 12-14.74 11.56 11.56 0 0 1 1.53-.07 13.6 13.6 0 0 1 13.48 11.81c3.95 29.64 7.76 72 11.64 129.43v.65s0 .41 0 .65c1.16 16.81 2.14 32.54 3 45.81 1.19 18.92 2.11 33.9 2.65 38.36 1.1 9.37-2.78 54.75-6.06 73.6a12.71 12.71 0 0 0 12.53 14.89h232a12.71 12.71 0 0 0 12.55-14.75c-3.07-18.87-6.5-64.35-5.4-73.74.54-4.46 1.46-19.43 2.65-38.36 2.93-46.83 7.83-125.25 14.67-176.53a13.63 13.63 0 0 1 13.48-11.81 11.56 11.56 0 0 1 1.53.07 13.58 13.58 0 0 1 12 14.74l-8.87 98.87a25.73 25.73 0 0 0 24.82 28l19.24.6a25.74 25.74 0 0 0 26.41-23.15c.29-2.87.52-5.25.64-6.56 7.29-81 2.62-134.24-14.29-166.42z" fill="#ffcae0"/><path d="m299.34 357.44a13.6 13.6 0 0 1 -7.14-2c-7.42-4.57-72.54-46-72.54-91.81a47.73 47.73 0 0 1 79.68-35.44 47.72 47.72 0 0 1 79.66 35.43c0 45.79-65.12 87.22-72.55 91.8a13.59 13.59 0 0 1 -7.11 2.02z" fill="#fff"/><path d="m299.34 348a4.14 4.14 0 0 1 -2.18-.62c-2.78-1.71-68-42.4-68-83.75a38.25 38.25 0 0 1 65.31-27.05l4.91 4.9 4.91-4.9a38.3 38.3 0 0 1 54.11 0 38 38 0 0 1 11.19 27.06c0 41.35-65.27 82-68 83.74a4.14 4.14 0 0 1 -2.25.62zm-32-114.31a29.92 29.92 0 0 0 -30 30c0 32.87 50.7 67.93 61.92 75.29 11.22-7.36 61.93-42.45 61.93-75.28a29.77 29.77 0 0 0 -8.77-21.19 30 30 0 0 0 -42.38 0l-7.84 7.82a4.15 4.15 0 0 1 -5.86 0l-7.84-7.82a29.88 29.88 0 0 0 -21.12-8.85z" fill="#220dba"/><path d="m299.31 327.55c-22.73-15.64-52.42-43.06-52.42-63.93a20.5 20.5 0 0 1 35-14.49l7.85 7.83a13.61 13.61 0 0 0 19.26.04l7.84-7.82a20.49 20.49 0 0 1 35 14.49c-.04 22.7-33.7 50.78-52.53 63.88z" fill="#ff5090"/><path d="m287.47 60.77-17.39 84.38 24.98-8.14 8.32 62.06 12.64-85.61-26.76 7.39z" fill="#ff5090"/><path d="m182.24 98.42 21.14 82.87 19.59-17.5 32.59 53.47-22.87-83.46-21.53 17.53z" fill="#ff5090"/><path d="m400.87 93.48-61.72 59.2 24.87 8.44-30.5 54.69 61.39-61-25.85-10.1z" fill="#ff5090"/></svg>
|
After Width: | Height: | Size: 3.7 KiB |
BIN
public/assets/images/portfolio/portfolio-01.jpg
Normal file
After Width: | Height: | Size: 469 KiB |
BIN
public/assets/images/portfolio/portfolio-02.jpg
Normal file
After Width: | Height: | Size: 449 KiB |
BIN
public/assets/images/portfolio/portfolio-03.jpg
Normal file
After Width: | Height: | Size: 362 KiB |
BIN
public/assets/images/portfolio/portfolio-04.jpg
Normal file
After Width: | Height: | Size: 379 KiB |
BIN
public/assets/images/portfolio/portfolio-05.jpg
Normal file
After Width: | Height: | Size: 371 KiB |
BIN
public/assets/images/portfolio/portfolio-08.jpg
Normal file
After Width: | Height: | Size: 103 KiB |
BIN
public/assets/images/post/post-01.jpg
Normal file
After Width: | Height: | Size: 67 KiB |
BIN
public/assets/images/post/post-02.jpg
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
public/assets/images/post/post-03.jpg
Normal file
After Width: | Height: | Size: 87 KiB |
BIN
public/assets/images/post/post-04.jpg
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
public/assets/images/post/post-05.jpg
Normal file
After Width: | Height: | Size: 258 KiB |
BIN
public/assets/images/post/post-06.jpg
Normal file
After Width: | Height: | Size: 249 KiB |
BIN
public/assets/images/prettyPhoto/dark_rounded/btnNext.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
public/assets/images/prettyPhoto/dark_rounded/btnPrevious.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
public/assets/images/prettyPhoto/dark_rounded/contentPattern.png
Normal file
After Width: | Height: | Size: 130 B |
BIN
public/assets/images/prettyPhoto/dark_rounded/loader.gif
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
public/assets/images/prettyPhoto/dark_rounded/sprite.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
public/assets/images/prettyPhoto/dark_square/btnNext.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
public/assets/images/prettyPhoto/dark_square/btnPrevious.png
Normal file
After Width: | Height: | Size: 1.4 KiB |