diff --git a/frontend/public/bowlspeed/index.html b/frontend/public/bowlspeed/index.html
new file mode 100644
index 0000000..3aaa0c1
--- /dev/null
+++ b/frontend/public/bowlspeed/index.html
@@ -0,0 +1,553 @@
+
+
+
+
+
+ 볼링공 속도 계산기
+
+
+
+
+
볼링공 속도 계산기
+
+
+
이 계산기는 볼링공이 파울라인에서 헤드핀까지 이동하는 속도를 계산합니다.
+
시간 입력 또는 원하는 속도 입력으로 양방향 계산이 가능합니다. 볼링 레인의 기본 거리는 60피트(18.288미터)입니다.
+
+
+
+
스톱워치
+
볼링공이 파울라인을 지날 때 '시작'을 누르고, 헤드핀에 도달할 때 '정지'를 누르세요.
+
00:00.000
+
+
+
+
+
+
+
+
+
+ 초
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js
index e444ff2..7f79967 100644
--- a/frontend/src/router/index.js
+++ b/frontend/src/router/index.js
@@ -36,6 +36,14 @@ const routes = [
path: '/',
redirect: '/login'
},
+ {
+ path: '/bowlspeed',
+ name: 'BowlingSpeed',
+ beforeEnter() {
+ window.location.href = '/bowlspeed/index.html';
+ },
+ meta: { title: '볼링공 속도 계산기', requiresAuth: false }
+ },
{
path: '/public/:publicHash',
name: 'EventPublicPage',