Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
proxy-manager-frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aolda
proxy-manager-frontend
Commits
e2c9b1c1
Commit
e2c9b1c1
authored
4 months ago
by
한동현
Browse files
Options
Downloads
Patches
Plain Diff
feat: 아올다 문의 URL 추가
parent
a318693d
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.env
+1
-0
1 addition, 0 deletions
.env
src/components/app-sidebar.tsx
+23
-2
23 additions, 2 deletions
src/components/app-sidebar.tsx
src/components/login-form.tsx
+1
-1
1 addition, 1 deletion
src/components/login-form.tsx
with
25 additions
and
3 deletions
.env
0 → 100644
+
1
−
0
View file @
e2c9b1c1
VITE_SUPPORT_URL=https://docs.google.com/forms/d/e/1FAIpQLSfqM4upCUjOOduoHZH5yhty_OtLQ8vlXNii-mboHNcOFTAZXQ/viewform
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/components/app-sidebar.tsx
+
23
−
2
View file @
e2c9b1c1
import
*
as
React
from
'
react
'
;
import
*
as
React
from
'
react
'
;
import
{
Link
}
from
'
react-router
'
;
import
{
Router
,
ShieldCheck
,
HardDrive
,
CircleHelp
}
from
'
lucide-react
'
;
import
{
import
{
Sidebar
,
Sidebar
,
SidebarContent
,
SidebarContent
,
SidebarFooter
,
SidebarGroup
,
SidebarGroup
,
SidebarGroupContent
,
SidebarGroupContent
,
SidebarGroupLabel
,
SidebarGroupLabel
,
...
@@ -19,11 +22,13 @@ const data = {
...
@@ -19,11 +22,13 @@ const data = {
title
:
'
웹 프록시 설정
'
,
title
:
'
웹 프록시 설정
'
,
items
:
[
items
:
[
{
{
icon
:
Router
,
title
:
'
라우팅 설정
'
,
title
:
'
라우팅 설정
'
,
url
:
'
#
'
,
url
:
'
#
'
,
isActive
:
true
,
isActive
:
true
,
},
},
{
{
icon
:
ShieldCheck
,
title
:
'
SSL 인증서
'
,
title
:
'
SSL 인증서
'
,
url
:
'
#
'
,
url
:
'
#
'
,
isActive
:
false
,
isActive
:
false
,
...
@@ -34,6 +39,7 @@ const data = {
...
@@ -34,6 +39,7 @@ const data = {
title
:
'
SSH 포트포워딩
'
,
title
:
'
SSH 포트포워딩
'
,
items
:
[
items
:
[
{
{
icon
:
HardDrive
,
title
:
'
SSH 설정
'
,
title
:
'
SSH 설정
'
,
url
:
'
#
'
,
url
:
'
#
'
,
isActive
:
false
,
isActive
:
false
,
...
@@ -58,7 +64,10 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
...
@@ -58,7 +64,10 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
{
item
.
items
.
map
((
item
)
=>
(
{
item
.
items
.
map
((
item
)
=>
(
<
SidebarMenuItem
key
=
{
item
.
title
}
>
<
SidebarMenuItem
key
=
{
item
.
title
}
>
<
SidebarMenuButton
asChild
isActive
=
{
item
.
isActive
}
>
<
SidebarMenuButton
asChild
isActive
=
{
item
.
isActive
}
>
<
a
href
=
{
item
.
url
}
>
{
item
.
title
}
</
a
>
<
Link
to
=
{
item
.
url
}
>
<
item
.
icon
/>
{
item
.
title
}
</
Link
>
</
SidebarMenuButton
>
</
SidebarMenuButton
>
</
SidebarMenuItem
>
</
SidebarMenuItem
>
))
}
))
}
...
@@ -67,6 +76,18 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
...
@@ -67,6 +76,18 @@ export function AppSidebar({ ...props }: React.ComponentProps<typeof Sidebar>) {
</
SidebarGroup
>
</
SidebarGroup
>
))
}
))
}
</
SidebarContent
>
</
SidebarContent
>
<
SidebarFooter
>
<
SidebarMenu
>
<
SidebarMenuItem
>
<
SidebarMenuButton
asChild
>
<
Link
to
=
{
import
.
meta
.
env
.
VITE_SUPPORT_URL
}
>
<
CircleHelp
className
=
"mr-2"
/>
문의하기
</
Link
>
</
SidebarMenuButton
>
</
SidebarMenuItem
>
</
SidebarMenu
>
</
SidebarFooter
>
</
Sidebar
>
</
Sidebar
>
);
);
}
}
This diff is collapsed.
Click to expand it.
src/components/login-form.tsx
+
1
−
1
View file @
e2c9b1c1
...
@@ -29,7 +29,7 @@ export function LoginForm({ className, ...props }: React.ComponentPropsWithoutRe
...
@@ -29,7 +29,7 @@ export function LoginForm({ className, ...props }: React.ComponentPropsWithoutRe
</
div
>
</
div
>
<
div
className
=
"mt-4 text-center text-sm"
>
<
div
className
=
"mt-4 text-center text-sm"
>
계정이 없으신가요?
계정이 없으신가요?
<
a
href
=
"#"
className
=
"ml-2 underline underline-offset-4"
>
<
a
href
=
{
import
.
meta
.
env
.
VITE_SUPPORT_URL
}
className
=
"ml-2 underline underline-offset-4"
>
아올다 프로젝트 신청하기
아올다 프로젝트 신청하기
</
a
>
</
a
>
</
div
>
</
div
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment