mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
14 lines
483 B
Vue
14 lines
483 B
Vue
<template>
|
|
<div class="hero min-h-screen bg-base-200">
|
|
<div class="hero-content flex-col lg:flex-row-reverse">
|
|
<img src="/public/chef.svg" class="max-w-sm rounded-lg shadow-2xl" />
|
|
<div>
|
|
<h1 class="text-5xl font-bold prose">Eat Something New</h1>
|
|
<p class="py-6 prose">Generate a random recipe.</p>
|
|
<NuxtLink to="/random" class="btn btn-primary">
|
|
>Random Recipe Now
|
|
</NuxtLink>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|