Skip to content

Commit

Permalink
Merge pull request #158 from team-nabi/develop
Browse files Browse the repository at this point in the history
🚚 merge develop
  • Loading branch information
oaoong authored Dec 2, 2023
2 parents e23b71e + e45c70f commit e889b3b
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 17 deletions.
9 changes: 8 additions & 1 deletion src/app/(root)/(routes)/(home)/components/BannerSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ const BannerSection = () => {
{ url: Assets.banner2 },
{ url: Assets.banner3 },
]
return <Slider imageData={bannerArr} imageAspectRatio="auto" />
return (
<Slider
loading="eager"
priority={true}
imageData={bannerArr}
imageAspectRatio="auto"
/>
)
}

export default BannerSection
23 changes: 22 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Metadata, Viewport } from 'next'
import localFont from 'next/font/local'
import Header from '@/components/domain/header'
import { Toaster } from '@/components/ui/toast/Toaster'
import { Environment } from '@/config/environment'
Expand All @@ -9,8 +10,28 @@ import ThemeProviderContext from '@/contexts/ThemeProviderContext'
import { initMockApi } from '@/lib/msw/initMockApi'
import '@/styles/globals.css'

const pretendard = localFont({
src: [
{
path: '../../public/font/Pretendard-Regular.woff',
weight: '400',
style: 'normal',
},
{
path: '../../public/font/Pretendard-Bold.woff',
weight: '700',
style: 'normal',
},
],
variable: '--font-pretendard',
display: 'swap',
})

export const metadata: Metadata = {
metadataBase: new URL(Environment.currentAddress()),
title: '물물교환 플랫폼, 나비장터',
description:
'나비장터를 통해서 필요없는 물건을 비슷한 가치의 물건과 교환해보세요.',
openGraph: {
title: '물물교환 플랫폼, 나비장터',
description:
Expand Down Expand Up @@ -42,7 +63,7 @@ export default async function RootLayout({
}>) {
return (
<html className="light" lang="ko">
<body>
<body className={pretendard.className}>
<TanstackQueryContext>
<ThemeProviderContext>
<MSWWrapper>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ const AvatarWithDropdown = ({ imageUrl }: { imageUrl?: string }) => {
<DropdownMenuTrigger asChild>
<Button variant={null}>
<Avatar size="md">
<AvatarImage imgUrl={imageUrl ?? DEFAULT_PROFILE_IMG} />
<AvatarImage
alt="profile"
imgUrl={imageUrl ?? DEFAULT_PROFILE_IMG}
/>
</Avatar>
</Button>
</DropdownMenuTrigger>
Expand Down
1 change: 0 additions & 1 deletion src/components/domain/header/sections/RightSide.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client'

import React from 'react'
import Link from 'next/link'
import { useRouter } from 'next/navigation'
import Button from '@/components/ui/button'
import AppPath from '@/config/appPath'
Expand Down
11 changes: 10 additions & 1 deletion src/components/domain/slider/Slider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,20 @@ import './index.css'
type SliderProps = {
imageData: { url: string | StaticImageData }[]
imageAspectRatio: string
loading?: 'lazy' | 'eager'
priority?: boolean
}

/**
* @param {ImageData} 이미지 아이디, 이미지 url을 담은 데이터
* @param {imageAspectRatio} swiper 크기 지정을 위한 변수
*/
const Slider = ({ imageData, imageAspectRatio }: SliderProps) => {
const Slider = ({
imageData,
imageAspectRatio,
loading = 'lazy',
priority = false,
}: SliderProps) => {
SwiperCore.use([Pagination, Autoplay])
return (
<Swiper
Expand All @@ -40,6 +47,8 @@ const Slider = ({ imageData, imageAspectRatio }: SliderProps) => {
sizes="(max-width: 640px) 100vw, 640px"
quality={50}
style={{ width: '100%' }}
loading={loading}
priority={priority}
/>
</SwiperSlide>
))}
Expand Down
12 changes: 0 additions & 12 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,6 @@
--page-min-width: 320px;
--page-max-width: 640px;
}

@font-face {
font-family: Pretendard;
font-weight: 400;
src: url('../../public/font/Pretendard-Regular.woff') format('woff');
}

@font-face {
font-family: Pretendard;
font-weight: 700;
src: url('../../public/font/Pretendard-Bold.woff') format('woff');
}
}

@layer base {
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ module.exports = {
padding: {
chat_input: 'var(--chat-input-height)',
},
fontFamily: {
pretendard: ['var(--font-pretendard)'],
},
},
},
plugins: [
Expand Down

0 comments on commit e889b3b

Please sign in to comment.