forked from AcaMate/AcaMate_Web
17 lines
435 B
Plaintext
17 lines
435 B
Plaintext
@page "/about"
|
|
|
|
<div class="bg-blue-500 text-white p-4">
|
|
<h2 class="text-2xl font-bold">About Us</h2>
|
|
<p class="mt-2">We are a team of passionate developers.</p>
|
|
<p>이건 그냥 일반 텍스트야</p>
|
|
|
|
@* 클릭시 onClick 이벤트 발생 *@
|
|
|
|
|
|
<button class="bg-blue-700 text-white px-4 py-2 rounded hover:bg-blue-800"
|
|
@onclick="OnClickEvent">
|
|
Click Me
|
|
</button>
|
|
|
|
</div>
|