Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SWLab Docs for Park
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Test
SWLab Docs for Park
Commits
0cd7937d
Commit
0cd7937d
authored
Apr 25, 2024
by
minseok.park
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update ui - main
parent
33e00ce5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
1 deletion
+27
-1
App.jsx
swlab-main/src/App.jsx
+3
-1
Footer.jsx
swlab-main/src/components/Footer.jsx
+24
-0
No files found.
swlab-main/src/App.jsx
View file @
0cd7937d
// @ts-nocheck
import
'./styles/index.scss'
import
Banner
from
'./components/Banner'
import
Header
from
'./components/Header'
import
Section
from
'./components/Section'
import
Card
from
'./components/Card'
import
'./styles/index.scss
'
import
Footer
from
'./components/Footer
'
function
App
()
{
return
(
...
...
@@ -43,6 +44,7 @@ function App () {
'클라우드 네이티브 Java 프레임워크'
,
]
}
/>
</
Section
>
<
Footer
/>
</>
)
}
...
...
swlab-main/src/components/Footer.jsx
0 → 100644
View file @
0cd7937d
// @ts-nocheck
import
styled
from
'styled-components'
import
logoImg
from
'../assets/images/logo.png'
export
default
function
Footer
()
{
return
<
Wrapper
>
<
LogoWrap
>
<
Logo
className=
{
clsx
({
active
:
scrollY
>
10
})
}
image=
{
scrollY
>
10
?
colorLogoImg
:
logoImg
}
/>
<
LogoTitpeWrap
>
<
LogoTitle
type=
'main'
>
SWLab
</
LogoTitle
>
<
LogoTitle
type=
'sub'
>
Bankware Global
</
LogoTitle
>
</
LogoTitpeWrap
>
</
LogoWrap
>
</
Wrapper
>
}
const
Wrapper
=
styled
.
div
`
background-color: #0072CE;
color: #fff;
width: 100%;
height: auto;
padding: 2.25rem 5rem;
font-size: 1.125rem;
`
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment