chore: Move images
@ -1,15 +1,15 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
import AboutImage001 from '@images/about-images/about-image-001.webp';
|
||||||
|
import AboutImage002 from '@images/about-images/about-image-002.webp';
|
||||||
|
import AboutImage003 from '@images/about-images/about-image-003.webp';
|
||||||
|
import AboutImage004 from '@images/about-images/about-image-004.webp';
|
||||||
|
import AboutImage005 from '@images/about-images/about-image-005.webp';
|
||||||
|
import AboutImage006 from '@images/about-images/about-image-006.webp';
|
||||||
|
import IrieSignature from '@images/about-images/irie-signature.webp';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import Prose from 'components/prose';
|
import Prose from 'components/prose';
|
||||||
import { useTranslations } from 'next-intl';
|
import { useTranslations } from 'next-intl';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import AboutImage001 from './images/about-image-001.webp';
|
|
||||||
import AboutImage002 from './images/about-image-002.webp';
|
|
||||||
import AboutImage003 from './images/about-image-003.webp';
|
|
||||||
import AboutImage004 from './images/about-image-004.webp';
|
|
||||||
import AboutImage005 from './images/about-image-005.webp';
|
|
||||||
import AboutImage006 from './images/about-image-006.webp';
|
|
||||||
import IrieSignature from './images/irie-signature.webp';
|
|
||||||
|
|
||||||
export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
export default function AboutNaraiDetail({ awards }: { awards: string }) {
|
||||||
const t = useTranslations('Index');
|
const t = useTranslations('Index');
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
import BarImage001 from '@images/bar-images/bar-image-001.webp';
|
||||||
|
import BarImage002 from '@images/bar-images/bar-image-002.webp';
|
||||||
|
import BarImage003 from '@images/bar-images/bar-image-003.webp';
|
||||||
|
import BarImage004 from '@images/bar-images/bar-image-004.webp';
|
||||||
|
import BarImage005 from '@images/bar-images/bar-image-005.webp';
|
||||||
|
import BarImage006 from '@images/bar-images/bar-image-006.webp';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import { useTranslations } from 'next-intl';
|
import { useTranslations } from 'next-intl';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
import BarImage001 from './images/bar-image-001.webp';
|
|
||||||
import BarImage002 from './images/bar-image-002.webp';
|
|
||||||
import BarImage003 from './images/bar-image-003.webp';
|
|
||||||
import BarImage004 from './images/bar-image-004.webp';
|
|
||||||
import BarImage005 from './images/bar-image-005.webp';
|
|
||||||
import BarImage006 from './images/bar-image-006.webp';
|
|
||||||
|
|
||||||
export default function SagyobarDetail() {
|
export default function SagyobarDetail() {
|
||||||
const t = useTranslations('Index');
|
const t = useTranslations('Index');
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
import CompanyImage001 from '@images/company-images/irie.webp';
|
||||||
|
import CompanyImage002 from '@images/company-images/kou.webp';
|
||||||
|
import CompanyImage003 from '@images/company-images/yamano.webp';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import VideoPlayer from 'components/video/video-player';
|
import VideoPlayer from 'components/video/video-player';
|
||||||
import { useTranslations } from 'next-intl';
|
import { useTranslations } from 'next-intl';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import CompanyImage001 from './images/irie.webp';
|
|
||||||
import CompanyImage002 from './images/kou.webp';
|
|
||||||
import CompanyImage003 from './images/yamano.webp';
|
|
||||||
|
|
||||||
export default function CompanyDetail() {
|
export default function CompanyDetail() {
|
||||||
const t = useTranslations('Index');
|
const t = useTranslations('Index');
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
import ConceptImage001 from '@images/concept-images/concept-image-001.webp';
|
||||||
|
import ConceptImage002 from '@images/concept-images/concept-image-002.webp';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import Logo from 'components/icons/logo';
|
import Logo from 'components/icons/logo';
|
||||||
import { useTranslations } from 'next-intl';
|
import { useTranslations } from 'next-intl';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import ConceptImage001 from './images/concept-image-001.webp';
|
|
||||||
import ConceptImage002 from './images/concept-image-002.webp';
|
|
||||||
|
|
||||||
export default function ConceptDetail() {
|
export default function ConceptDetail() {
|
||||||
const t = useTranslations('Index');
|
const t = useTranslations('Index');
|
||||||
|
@ -2,6 +2,14 @@ import { ThreeItemGrid } from 'components/grid/three-items';
|
|||||||
import Footer from 'components/layout/footer';
|
import Footer from 'components/layout/footer';
|
||||||
import { SupportedLocale } from 'components/layout/navbar/language-control';
|
import { SupportedLocale } from 'components/layout/navbar/language-control';
|
||||||
|
|
||||||
|
import HomeImage001 from '@images/home-images/home-image-001.webp';
|
||||||
|
import HomeImage002 from '@images/home-images/home-image-002.webp';
|
||||||
|
import HomeImage003 from '@images/home-images/home-image-003.webp';
|
||||||
|
import HomeImage004 from '@images/home-images/home-image-004.webp';
|
||||||
|
import HomeImage005 from '@images/home-images/home-image-005.webp';
|
||||||
|
import HomeImage006 from '@images/home-images/home-image-006.jpg';
|
||||||
|
import HomeImage007 from '@images/home-images/home-image-007.webp';
|
||||||
|
import HomeImage008 from '@images/home-images/home-image-008.webp';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import AboutNaraiPreview from 'components/layout/about-narai-preview';
|
import AboutNaraiPreview from 'components/layout/about-narai-preview';
|
||||||
import ConceptPreview from 'components/layout/concept-preview';
|
import ConceptPreview from 'components/layout/concept-preview';
|
||||||
@ -16,14 +24,6 @@ import { getCart } from 'lib/shopify';
|
|||||||
import { cookies } from 'next/headers';
|
import { cookies } from 'next/headers';
|
||||||
import Image from 'next/image';
|
import Image from 'next/image';
|
||||||
import { Suspense } from 'react';
|
import { Suspense } from 'react';
|
||||||
import HomeImage001 from './images/home-image-001.webp';
|
|
||||||
import HomeImage002 from './images/home-image-002.webp';
|
|
||||||
import HomeImage003 from './images/home-image-003.webp';
|
|
||||||
import HomeImage004 from './images/home-image-004.webp';
|
|
||||||
import HomeImage005 from './images/home-image-005.webp';
|
|
||||||
import HomeImage006 from './images/home-image-006.jpg';
|
|
||||||
import HomeImage007 from './images/home-image-007.webp';
|
|
||||||
import HomeImage008 from './images/home-image-008.webp';
|
|
||||||
|
|
||||||
export const runtime = 'edge';
|
export const runtime = 'edge';
|
||||||
const { SITE_NAME } = process.env;
|
const { SITE_NAME } = process.env;
|
||||||
|
Before Width: | Height: | Size: 420 KiB After Width: | Height: | Size: 420 KiB |
Before Width: | Height: | Size: 477 KiB After Width: | Height: | Size: 477 KiB |
Before Width: | Height: | Size: 503 KiB After Width: | Height: | Size: 503 KiB |
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 168 KiB After Width: | Height: | Size: 168 KiB |
Before Width: | Height: | Size: 272 KiB After Width: | Height: | Size: 272 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 217 KiB After Width: | Height: | Size: 217 KiB |
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 668 KiB After Width: | Height: | Size: 668 KiB |
Before Width: | Height: | Size: 772 KiB After Width: | Height: | Size: 772 KiB |
Before Width: | Height: | Size: 622 KiB After Width: | Height: | Size: 622 KiB |
Before Width: | Height: | Size: 951 KiB After Width: | Height: | Size: 951 KiB |
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 188 KiB After Width: | Height: | Size: 188 KiB |
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 246 KiB After Width: | Height: | Size: 246 KiB |
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 212 KiB After Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 423 KiB After Width: | Height: | Size: 423 KiB |
Before Width: | Height: | Size: 791 KiB After Width: | Height: | Size: 791 KiB |
Before Width: | Height: | Size: 783 KiB After Width: | Height: | Size: 783 KiB |
Before Width: | Height: | Size: 732 KiB After Width: | Height: | Size: 732 KiB |
Before Width: | Height: | Size: 283 KiB After Width: | Height: | Size: 283 KiB |
Before Width: | Height: | Size: 928 KiB After Width: | Height: | Size: 928 KiB |
@ -16,6 +16,9 @@
|
|||||||
"incremental": true,
|
"incremental": true,
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"noUncheckedIndexedAccess": true,
|
"noUncheckedIndexedAccess": true,
|
||||||
|
"paths": {
|
||||||
|
"@images/*": ["public/assets/images/*"]
|
||||||
|
},
|
||||||
"plugins": [
|
"plugins": [
|
||||||
{
|
{
|
||||||
"name": "next"
|
"name": "next"
|
||||||
|