Skip to content

Commit

Permalink
Merge pull request #16 from iGEM-UTokyo/recombinase
Browse files Browse the repository at this point in the history
Recombinase
  • Loading branch information
shundroid authored Sep 18, 2022
2 parents 07b8bce + e7e6173 commit 9e6e81a
Show file tree
Hide file tree
Showing 69 changed files with 3,910 additions and 651 deletions.
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "biotch-vue3",
"version": "0.1.0",
"version": "0.5.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand All @@ -10,13 +10,17 @@
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/vue-fontawesome": "^3.0.0-5",
"@vue/shared": "^3.2.37",
"chart.js": "^3.8.0",
"core-js": "^3.8.3",
"pinia": "^2.0.12",
"uuid": "^8.3.2",
"vue": "^3.2.13"
"vue": "^3.2.13",
"vue-chartjs": "^4.1.1",
"vue-i18n": "9"
},
"devDependencies": {
"@types/jest": "^27.0.1",
Expand Down
87 changes: 87 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file removed public/_favicon.ico
Binary file not shown.
7 changes: 7 additions & 0 deletions public/blocks/meta.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/blocks/recombinase-recognition-seq.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/blocks/wrap-head.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions public/blocks/wrap-tail.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 40 additions & 7 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,52 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- <link rel="icon" href="<%= BASE_URL %>favicon.ico"> -->
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-VSNQGLLDMZ"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());

gtag("config", "G-VSNQGLLDMZ");
</script>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="<%= BASE_URL %>favicon.png" />
<link rel="stylesheet" href="<%= BASE_URL %>style.css" />
<title>genochemy</title>
<title>Genochemy</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap"
rel="stylesheet"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@iGEM_UTokyo" />
<meta property="og:url" content="https://genochemy.netlify.app" />
<meta
property="og:description"
content="塩基配列ブロックを使って生物をプログラミング"
/>
<meta
property="og:image"
content="https://lh3.googleusercontent.com/pw/AL9nZEX5lDsjTNAoC1oRBrvtnikxjumzsHD_5KGNJZyta49LS59S7wKYzuelH3jM2b3VTnfBmEIO8Yd2HrIJU5lSrm4LjqN1AlCP4hcED-1mdDdF1sKM2X9b_kAOcTs3V-z84xijjEqrhGj_zVU_1Fx0IuY29g=w1078-h563-no"
/>
<meta property="og:title" content="genochemy" />
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
<strong
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
properly without JavaScript enabled. Please enable it to
continue.</strong
>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
Expand Down
Loading

0 comments on commit 9e6e81a

Please sign in to comment.