website: opti device list

This commit is contained in:
tiann
2023-01-29 12:59:32 +08:00
parent b1e279bd2a
commit 0e651fdc99
4 changed files with 109 additions and 16 deletions

View File

@@ -10,8 +10,23 @@ Trang này chỉ để cho bạn tìm thấy source cho thiết bị của bạn
:::
| Maintainer | Repository | Thiết bị hỗ trợ |
| --- | --- | --- |
| [SpectreDev-007](https://github.com/SpectreDev-007) | [kernel_sony_sm8250](https://github.com/XperiaBrickers/kernel_sony_sm8250) | Các thiết bị Sony dùng SM8250 |
| [akash07k](https://github.com/akash07k) | [nexus_kernel_xiaomi_sm8250](https://github.com/akash07k/nexus_kernel_xiaomi_sm8250/tree/lychee) | Poco F4: munch |
| [HMTheBoy154](https://github.com/hmtheboy154) | [Darkmatter-kernel](https://github.com/hmtheboy154/Darkmatter-kernel) <br/> [kernel_ksu](https://github.com/hmtheboy154/kernel_ksu) | Các thiết bị x86_64 chạy Android-x86 |
<script setup>
import data from '../../repos'
</script>
<table>
<thead>
<tr>
<th>Maintainer</th>
<th>Repository</th>
<th>Thiết bị hỗ trợ</th>
</tr>
</thead>
<tbody>
<tr v-for="repo in data" :key="repo.devices">
<td><a href="{{ repo.maintainer_link }}" target="_blank" rel="noreferrer">{{ repo.maintainer }}</a></td>
<td><a href="{{ repo.kernel_link }}" target="_blank" rel="noreferrer">{{ repo.kernel_name }}</a></td>
<td>{{ repo.devices }}</td>
</tr>
</tbody>
</table>