Skip to content

Commit 714a339

Browse files
committed
Fix br issue
1 parent 13e29d5 commit 714a339

File tree

3 files changed

+2717
-1
lines changed

3 files changed

+2717
-1
lines changed

biome.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"useIgnoreFile": true
77
},
88
"files": {
9-
"includes": ["**", "!**/dist"]
9+
"includes": ["**", "!**/dist"],
10+
"maxSize": 2000000
1011
},
1112
"javascript": {
1213
"formatter": {

src/codegen/__tests__/__snapshots__/codegen.test.ts.snap

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2705,3 +2705,133 @@ exports[`render real world component real world $ 106`] = `
27052705
</VStack>
27062706
</Center>"
27072707
`;
2708+
2709+
exports[`render real world component real world $ 107`] = `
2710+
"<Center
2711+
bg="$background"
2712+
flexDir="column"
2713+
gap="76px"
2714+
overflow="hidden"
2715+
px="20px"
2716+
py="60px"
2717+
>
2718+
<Image
2719+
left="-183.93px"
2720+
opacity="0.2"
2721+
pos="absolute"
2722+
src="/icons/backgroundImage.svg"
2723+
top="-255px"
2724+
transform="rotate(11.24deg)"
2725+
transformOrigin="top left"
2726+
w="100%"
2727+
/>
2728+
<VStack alignItems="center" gap="60px" w="100%">
2729+
<VStack alignItems="center" gap="30px" w="100%">
2730+
<Box
2731+
aspectRatio="1.91"
2732+
bg="#B1874F"
2733+
h="52px"
2734+
maskImage="url(/icons/path1208.svg)"
2735+
maskRepeat="no-repeat"
2736+
maskSize="contain"
2737+
w="100px"
2738+
/>
2739+
<VStack alignItems="center" gap="20px" w="100%">
2740+
<Text
2741+
color="$primaryAccent"
2742+
fontFamily="MaruBuri"
2743+
fontSize="20px"
2744+
fontWeight="700"
2745+
letterSpacing="0.04em"
2746+
lineHeight="1.5"
2747+
>
2748+
Under Construction
2749+
</Text>
2750+
<Text
2751+
color="$primaryAccent"
2752+
fontFamily="MaruBuri"
2753+
fontSize="35px"
2754+
fontWeight="700"
2755+
letterSpacing="-0.02em"
2756+
lineHeight="1.5"
2757+
textAlign="center"
2758+
w="100%"
2759+
>
2760+
제주국제관악제 <br />리뉴얼 알림
2761+
</Text>
2762+
</VStack>
2763+
<VStack alignItems="center" gap="20px" w="100%">
2764+
<Text
2765+
color="$text"
2766+
fontFamily="Noto Sans KR"
2767+
fontSize="17px"
2768+
fontWeight="400"
2769+
letterSpacing="-0.03em"
2770+
lineHeight="2"
2771+
textAlign="center"
2772+
w="100%"
2773+
>
2774+
더 나은 서비스 제공을 위해 <br />시스템 점검 및 리뉴얼을 진행 중입니다.<br />이용에 불편을 드려 죄송하며, <br />빠른 시일 내에 다시 찾아뵙겠습니다.
2775+
</Text>
2776+
<Text
2777+
color="$textLight"
2778+
fontFamily="Noto Sans KR"
2779+
fontSize="15px"
2780+
fontWeight="400"
2781+
letterSpacing="-0.02em"
2782+
lineHeight="1.7"
2783+
textAlign="center"
2784+
w="100%"
2785+
>
2786+
We are currently updating our website <br />to serve you better. <br />We apologize for the inconvenience.
2787+
</Text>
2788+
</VStack>
2789+
</VStack>
2790+
<VStack alignItems="center" gap="20px">
2791+
<Text
2792+
color="$primary"
2793+
fontFamily="Noto Sans KR"
2794+
fontSize="16px"
2795+
fontWeight="700"
2796+
letterSpacing="-0.02em"
2797+
lineHeight="1.7"
2798+
>
2799+
제주국제관악제 최신 소식 확인하기
2800+
</Text>
2801+
<Flex gap="30px">
2802+
<Image
2803+
aspectRatio="1"
2804+
borderRadius="4px"
2805+
boxSize="32px"
2806+
display="none"
2807+
src="/icons/twitter_5968830 (1) 1.svg"
2808+
/>
2809+
<Image aspectRatio="1" borderRadius="4px" boxSize="32px" src="/icons/instagram_15713420 1.svg" />
2810+
<Image aspectRatio="1" borderRadius="4px" boxSize="32px" src="/icons/facebook_1384053 1.svg" />
2811+
<Box
2812+
aspectRatio="1"
2813+
bg="#FFF"
2814+
borderRadius="4px"
2815+
boxSize="32px"
2816+
overflow="hidden"
2817+
pos="relative"
2818+
>
2819+
<Image boxSize="32px" src="/icons/Layer 2.svg" />
2820+
</Box>
2821+
<Image aspectRatio="1" boxSize="32px" display="none" src="/icons/Group 21.svg" />
2822+
</Flex>
2823+
<Text
2824+
color="$text"
2825+
fontFamily="Noto Sans KR"
2826+
fontSize="16px"
2827+
fontWeight="500"
2828+
letterSpacing="-0.02em"
2829+
lineHeight="1.7"
2830+
textAlign="center"
2831+
>
2832+
문의 : 064-722-8704 / <br />bandfestival@hanmail.net
2833+
</Text>
2834+
</VStack>
2835+
</VStack>
2836+
</Center>"
2837+
`;

0 commit comments

Comments
 (0)