-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
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,20 @@ | ||
<div class="flex flex-col gap-4 bg-base-200 rounded-box max-w-md p-6"> | ||
<!-- Header --> | ||
<div class="flex items-center gap-2 font-bold"> | ||
<i class="fa-solid fa-cookie text-lg text-secondary"></i> | ||
Cookie notice | ||
</div> | ||
|
||
<!-- Body --> | ||
<span> | ||
We use cookies to ensure that we give you the best experience on our website. | ||
<a class="link link-hover link-accent">Read cookies policies</a> | ||
</span> | ||
|
||
<!-- Footer --> | ||
<div class="flex justify-between items-center"> | ||
<a class="link text-sm">Manage your preferences</a> | ||
|
||
<button class="btn btn-primary btn-sm">Accept</button> | ||
</div> | ||
</div> |