Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I6e1c163a147b14b92a5f6ae4de6a87206a6a6964
21 lines
332 B
Text
21 lines
332 B
Text
---
|
|
interface Props {
|
|
currentDate: string;
|
|
}
|
|
|
|
const { currentDate } = Astro.props;
|
|
---
|
|
|
|
<div class="section">
|
|
<p>System Info</p>
|
|
<table class="system-info">
|
|
<tr>
|
|
<td>time:</td>
|
|
<td>{currentDate}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>os:</td>
|
|
<td>Ubuntu GNU/Linux 24.04 (LTS)</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|