ci: fix ci branches

This commit is contained in:
thehrz 2024-08-16 23:37:43 +08:00
parent 8a64051bf2
commit 00cb87bdc2
Signed by: thehrz
GPG Key ID: C84CBCE7D5F88855
2 changed files with 4 additions and 11 deletions

View File

@ -3,11 +3,11 @@ name: CI
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
deploy:

View File

@ -1,19 +1,12 @@
"use client"
import Nav from "@/components/Nav"
import { useEffect } from "react"
export default function Home() {
return (
<div className="max-w-full flex justify-center m-auto">
<div className='max-w-full flex justify-center m-auto'>
<div className='hero-content text-center'>
<div className='max-w-md'>
<h1 className='text-5xl font-bold'>ipv6-test</h1>
<p className='py-6'>
IPv6测试服务
</p>
<p className='py-6'>IPv6测试服务</p>
<button className='btn btn-primary'></button>
</div>
</div>