Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ontend into feature/#34-auth
  • Loading branch information
wjknnn committed Mar 12, 2024
2 parents 7488d8b + cd0a413 commit cc6994a
Show file tree
Hide file tree
Showing 18 changed files with 1,292 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .pnp.cjs

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

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/ip-npm-2.0.0-204facb3cc-cfcfac6b87.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
],
"scripts": {
"build": "turbo run build",
"build:user": "yarn workspace @service/user build"
"build:user": "yarn workspace @service/user build",
"build:main": "yarn workspace @service/main build",
"build:admin": "yarn workspace @service/admin build"
},
"devDependencies": {
"prettier": "^3.2.2",
Expand Down
4 changes: 3 additions & 1 deletion packages/ui/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import Link from 'next/link'

export const Footer = () => {
return (
<footer className="transition-all w-full lg:h-[360px] h-[440px] bg-gray800 lg:px-[360px] md:px-[120px] sm:px-[40px] py-[48px] flex flex-col justify-between">
Expand All @@ -19,7 +21,7 @@ export const Footer = () => {
<div className="flex flex-col gap-[18px]">
<ul className="flex items-center gap-2 text-labelSmall text-gray300 [&_li]:flex [&_li]:items-center [&_li]:gap-2 [&_li]:after:content-[''] [&_li]:after:inline-block [&_li]:after:h-[16px] [&_li]:after:w-[1px] [&_li]:after:rounded-full [&_li]:after:bg-gray300 [&_li:last-child]:after:hidden">
<li className="text-[20px] font-bold text-gray100 leading-6">마음가짐</li>
<li className="cursor-pointer">개인정보처리방침</li>
<li className="cursor-pointer"><Link href="/privacy">개인정보처리방침</Link></li>
<li className="cursor-pointer">이용약관</li>
</ul>
<p className="text-bodySmall text-gray500">
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const Header = () => {
}, [pathName])

return (
<header className="transition-all flex w-full h-[60px] items-center justify-between lg:px-[170px] md:px-[64px] sm:px-[20px] bg-white dark:bg-gray900 border-b border-gray100 fixed z-10">
<header className="transition-all flex w-full h-[60px] items-center justify-between lg:px-[170px] md:px-[64px] sm:px-[20px] bg-white dark:bg-gray900 border-b border-gray100 fixed z-50">
<div className="flex items-center gap-8">
<div className="flex items-center gap-[2px] cursor-pointer" onClick={() => router.push('/')}>
<Image src={HeaderLogo} alt="logo image" width={42} height={42} priority />
Expand Down
414 changes: 414 additions & 0 deletions service/admin/src/app/privacy/PrivacySection.tsx

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions service/admin/src/app/privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import PrivacySection from "./PrivacySection"


const PrivacyPage = () => {
return (
<div className="w-full h-full flex justify-center px-2.5 py-20">
<PrivacySection />
</div>
)
}

export default PrivacyPage
414 changes: 414 additions & 0 deletions service/main/src/app/privacy/PrivacySection.tsx

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions service/main/src/app/privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import PrivacySection from "./PrivacySection"


const PrivacyPage = () => {
return (
<div className="w-full h-full flex justify-center px-2.5 py-20">
<PrivacySection />
</div>
)
}

export default PrivacyPage
414 changes: 414 additions & 0 deletions service/user/src/app/privacy/PrivacySection.tsx

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions service/user/src/app/privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import PrivacySection from "./PrivacySection"


const PrivacyPage = () => {
return (
<div className="w-full h-full flex justify-center px-2.5 py-20">
<PrivacySection />
</div>
)
}

export default PrivacyPage
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2699,9 +2699,9 @@ __metadata:
linkType: hard

"ip@npm:^2.0.0":
version: 2.0.0
resolution: "ip@npm:2.0.0"
checksum: cfcfac6b873b701996d71ec82a7dd27ba92450afdb421e356f44044ed688df04567344c36cbacea7d01b1c39a4c732dc012570ebe9bebfb06f27314bca625349
version: 2.0.1
resolution: "ip@npm:2.0.1"
checksum: d765c9fd212b8a99023a4cde6a558a054c298d640fec1020567494d257afd78ca77e37126b1a3ef0e053646ced79a816bf50621d38d5e768cdde0431fa3b0d35
languageName: node
linkType: hard

Expand Down

0 comments on commit cc6994a

Please sign in to comment.