mirror of
https://repo.getmonero.org/AnonDev/xmrmemes.git
synced 2024-12-22 22:19:25 -05:00
dbfda5cf9e
Add dark / light theme Add social sharing on meme pages Add approving / pending admin section Improve design Add pagination on profiles Make front end date time user friendly Finish rough draft of site And Much more... Still need to fix a few minor things before it goes live. Almost complete.
16 lines
507 B
PHP
16 lines
507 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-12 text-center">
|
|
<h1>About</h1>
|
|
<p class="lead">Post Monero memes and get tipped Monero.</p>
|
|
<p class="lead mb-0">Monero (XMR) Donations Happily Accepted.</p>
|
|
<img class="img-qr" src="{{ $data['qr'] }}" alt="QR code">
|
|
<p class="lead">{{ $data['address'] }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|