Frontend: icons

This commit is contained in:
jay-tux 2025-05-04 12:30:08 +02:00
parent 021e174f3a
commit 4b86cb560b
Signed by: jay-tux
GPG Key ID: 84302006B056926E
4 changed files with 8 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -1,12 +1,17 @@
package com.jaytux.simd.frontend
import androidx.compose.ui.graphics.painter.Painter
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
import frontend.composeapp.generated.resources.Res
import frontend.composeapp.generated.resources.icon
import org.jetbrains.compose.resources.painterResource
fun main() = application {
Window(
onCloseRequest = ::exitApplication,
title = "frontend",
title = "Intrinsics Viewer",
icon = painterResource(Res.drawable.icon),
) {
App()
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -3,8 +3,9 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>frontend</title>
<title>Intrinsics Viewer</title>
<link type="text/css" rel="stylesheet" href="styles.css">
<link rel="icon" href="icon.png">
<script type="application/javascript" src="composeApp.js"></script>
</head>
<body>