import React from 'react'; import Grid from "@mui/material/Grid"; import StandardImageList from '@/components/UIElements/ImageList/StandardImageList'; import QuiltedImageList from '@/components/UIElements/ImageList/QuiltedImageList'; import WovenImageList from '@/components/UIElements/ImageList/WovenImageList'; import MasonryImageList from '@/components/UIElements/ImageList/MasonryImageList'; import ImageListWithTitleBars from '@/components/UIElements/ImageList/ImageListWithTitleBars'; import TitleBarBelowImageStandard from '@/components/UIElements/ImageList/TitleBarBelowImageStandard'; import Link from 'next/link'; import styles from '@/styles/PageTitle.module.css'; export default function ImageList() { return ( <> {/* Page title */}

Image List

{/* StandardImageList */} {/* WovenImageList */} {/* ImageListWithTitleBars */} {/* QuiltedImageList */} {/* MasonryImageList */} {/* TitleBarBelowImageStandard */} ); }