Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add tcp link #96

Merged
merged 4 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/images/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jet - 构建,如你所愿</title>
<title>Jet - 构建,如你所愿 | 成都了了科技有限公司</title>
</head>
<body>
<div id="app"></div>
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "official-website",
"private": true,
"version": "1.0.0",
"version": "0.1.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down Expand Up @@ -44,5 +44,6 @@
"prettier": "^2.7.1",
"tailwindcss": "^3.2.1",
"vite": "^3.1.0"
}
},
"packageManager": "[email protected]"
}
4 changes: 3 additions & 1 deletion src/components/layout/footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
<span class="ml-2">{{ $t('page.home.public_security') }}</span>
</div>
<div class="text-gray-50 md:ml-2 md:mt-0 mt-2">
{{ $t('page.home.icp') }}
<a href="https://beian.miit.gov.cn/">
{{ $t('page.home.icp') }}
</a>
</div>
</div>
</div>
Expand Down
Loading