본문 바로가기
이모저모

롯데월드타워 근처 분위기 좋은 카페 추천

by wjdflgkrl 2024. 12. 27.
반응형

롯데월드타워 근처에서 여유롭게 즐길 수 있는 카페를 소개합니다. 데이트부터 가족 나들이까지 모두에게 어울리는 공간을 만나보세요. 빠르게 장소를 확인하려면 아래 버튼을 눌러보세요.

 

☕ 앤티크 커피 (Antique Coffee)

석촌호수 근처에 위치한 앤티크 커피는 고급스러운 인테리어와 다양한 디저트 메뉴로 유명한 곳입니다.

  • 추천 메뉴: 바닐라 라떼, 홈메이드 치즈케이크
  • 특징: 창가석에서 석촌호수와 롯데월드타워의 전경을 감상할 수 있는 특별한 공간

🍰 타워뷰 카페 123

롯데월드타워를 정면에서 바라볼 수 있는 루프탑 카페입니다. 해질녘 노을과 함께하는 커피 한 잔은 연인들에게 로맨틱한 시간을 선사합니다.

  • 추천 메뉴: 아메리카노, 크로와상 샌드위치
  • 특징: 야외 좌석과 실내 좌석 모두 완벽한 타워 뷰 제공

🧁 도레도레 (Dore Dore)

컬러풀한 케이크로 유명한 도레도레는 아이들과 함께 방문하기에도 좋습니다.

  • 추천 메뉴: 무지개 케이크, 핫초코
  • 특징: 밝고 아기자기한 인테리어와 SNS에서 핫한 포토존 제공

🌿 카페 슬로우파크 (Slow Park)

자연친화적인 분위기의 카페로, 조용히 책을 읽거나 대화를 나누기 좋은 공간입니다.

  • 추천 메뉴: 핸드드립 커피, 유기농 티 세트
  • 특징: 나무와 초록색 식물로 꾸며진 힐링 공간

🎨 브런치 카페 오아시스

여유로운 아침이나 늦은 점심 시간에 방문하기 좋은 브런치 카페입니다.

  • 추천 메뉴: 에그 베네딕트, 카푸치노
  • 특징: 깔끔하고 모던한 인테리어로 연인, 친구 모임에 적합
반응형

/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js'; import {LargestContentfulPaint as ComputedLcp} from '../../computed/metrics/largest-contentful-paint.js'; const UIStrings = { /** Description of the Largest Contentful Paint (LCP) metric, which marks the time at which the largest text or image is painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */ description: 'Largest Contentful Paint marks the time at which the largest text or image is ' + `painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)`, }; const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings); class LargestContentfulPaint extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'largest-contentful-paint', title: str_(i18n.UIStrings.largestContentfulPaintMetric), description: str_(UIStrings.description), scoreDisplayMode: Audit.SCORING_MODES.NUMERIC, supportedModes: ['navigation'], requiredArtifacts: ['HostUserAgent', 'Trace', 'DevtoolsLog', 'GatherContext', 'URL', 'SourceMaps'], }; } /** * @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}} */ static get defaultOptions() { return { mobile: { // 25th and 13th percentiles HTTPArchive -> median and p10 points. // https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1 // https://web.dev/articles/lcp#what_is_a_good_lcp_score // see https://www.desmos.com/calculator/1etesp32kt scoring: { p10: 2500, median: 4000, }, }, desktop: { // 25th and 5th percentiles HTTPArchive -> median and p10 points. // SELECT // APPROX_QUANTILES(lcpValue, 100)[OFFSET(5)] AS p05_lcp, // APPROX_QUANTILES(lcpValue, 100)[OFFSET(25)] AS p25_lcp // FROM ( // SELECT CAST(JSON_EXTRACT_SCALAR(payload, "$['_chromeUserTiming.LargestContentfulPaint']") AS NUMERIC) AS lcpValue // FROM `httparchive.pages.2020_04_01_desktop` // ) scoring: { p10: 1200, median: 2400, }, }, }; } /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static async audit(artifacts, context) { const trace = artifacts.Trace; const devtoolsLog = artifacts.DevtoolsLog; const gatherContext = artifacts.GatherContext; const metricComputationData = { trace, devtoolsLog, gatherContext, settings: context.settings, URL: artifacts.URL, SourceMaps: artifacts.SourceMaps, simulator: null, }; const metricResult = await ComputedLcp.request(metricComputationData, context); const options = context.options[context.settings.formFactor]; return { score: Audit.computeLogNormalScore( options.scoring, metricResult.timing ), scoringOptions: options.scoring, numericValue: metricResult.timing, numericUnit: 'millisecond', displayValue: str_(i18n.UIStrings.seconds, {timeInMs: metricResult.timing}), }; } } export default LargestContentfulPaint; export {UIStrings};