diff --git a/components/logos/AnrLogo2.tsx b/components/logos/AnrLogo2.tsx new file mode 100644 index 0000000..a6dfa0b --- /dev/null +++ b/components/logos/AnrLogo2.tsx @@ -0,0 +1,11 @@ +import Image from 'next/image'; +import logo from '../../public/logo_anr2.png' +export const AnrLogo2 = () => ( + Logo Agence Nationale de la Recherche +); diff --git a/components/logos/Lyon2Logo.tsx b/components/logos/Lyon2Logo.tsx new file mode 100644 index 0000000..b6915c3 --- /dev/null +++ b/components/logos/Lyon2Logo.tsx @@ -0,0 +1,13 @@ +import Image from 'next/image'; +import larhraImg from '../../public/logo_lyon2.png'; + + +export const Lyon2Logo = () => ( + Logo Lyon2 +); diff --git a/lib/projectHomePages/objective/objective.module.css b/lib/projectHomePages/objective/objective.module.css new file mode 100644 index 0000000..5d977df --- /dev/null +++ b/lib/projectHomePages/objective/objective.module.css @@ -0,0 +1,93 @@ +.theme { + --ion-background-color: #fff; + --gv-bg-project-toolbar: #EBF8FF; +} + +.logosTitle { + margin-top: 0; + padding-top: 0; +} + +.logosContainer { + margin-top: 4rem; + background-color: white; + --ion-grid-column-padding: var(--ion-padding); +} + +.bannerContainer { + position: relative; + height: 250px; + display: flex; + align-items: center; +} + +.bannerImage { + object-position: 40% 70%; +} + +.title { + color: #fff; + font-size: 1.4rem; + position: absolute; + left: 1rem; + bottom: 0.3rem; +} +/* sm and up */ +@media screen and (min-width: 576px) { + .title { + font-size: 2rem; + } + + .bannerContainer { + height: 350px; + } + + .bannerImage { + object-position: 100% 70%; + } +} + +/* md and up */ +@media screen and (min-width: 768px) { + .title { + font-size: 2.1rem; + } + + .bannerContainer { + height: 425px; + } + + .bannerImage { + object-position: 100% 70%; + } +} + +/* lg and up */ +@media screen and (min-width: 992px) { + .title { + font-size: 2.6rem; + } + + .bannerContainer { + height: 500px; + } + + .bannerImage { + object-position: 100% 70%; + } +} + +/* xl and up */ +@media screen and (min-width: 1200px) { + .title { + font-size: 3.1rem; + } + + .bannerContainer { + height: 650px; + } + + .bannerImage { + object-position: 100% 70%; + } +} \ No newline at end of file diff --git a/lib/projectHomePages/objective/objective.tsx b/lib/projectHomePages/objective/objective.tsx new file mode 100644 index 0000000..3c57df7 --- /dev/null +++ b/lib/projectHomePages/objective/objective.tsx @@ -0,0 +1,160 @@ +import { NextPage } from 'next'; +import Image from 'next/image'; +import { useRouter } from 'next/router'; +import { Person } from '../../../components/elements/Person.component'; +import { ProjectPageLayout } from '../../../components/layouts/ProjectPageLayout.component'; +import { ProjectPageProps } from '../../../pages/project/[geov_id]'; +import bannerImage from '../../../public/objective.png'; +import styles from './objective.module.css'; +import { LarhraLogo } from '../../../components/logos/LarhraLogo'; +import { KleiolabLogo } from '../../../components/logos/KleiolabLogo'; +import { AnrLogo2 } from '../../../components/logos/AnrLogo2'; +import { Lyon2Logo } from '../../../components/logos/Lyon2Logo'; + +const OBJECTive_component: NextPage = (props) => { + const router = useRouter(); + + return ( +
+ +
+ OBJECTive + + { + setTimeout(() => { + el?.getInputElement().then(() => { + console.log('focus on ', el); + el?.setFocus(); + }); + }, 300); + el?.addEventListener('keypress', (event: KeyboardEvent) => { + if (event.key === 'Enter') { + el?.getInputElement().then((inputEl: HTMLInputElement) => { + console.log(inputEl?.value); + router.push({ + pathname: `${props.params.geovID}/search`, + query: { term: inputEl?.value }, + }); + }); + } + }); + }} + > +

+
OBJECTive
+

+
+ + + +
+ + + Image: Ignacio de León y Escosura, Auction Sale in Clinton Hall, New York, 1876, The Metropolitan Museum of Art, 83.11, Gift of the Artist, 1883 + + +
+ + +

+ + Tracking Objets d'art in Time through the Art Market
+ Historical data on auctions in the modern era (1750-1950), ready to explore and reuse +
+

{' '} +

+ Objets d'art (or decorative arts) are challenging to research as they include a vast array of objects, encompassing ceramics, + furniture, glass, metalwork, and textiles, all with distinctive forms, functions and materials, and their creators are often unknown. + Under-represented in cultural economics and heritage studies, the absence of a comprehensive dataset is an obstacle to study and track pieces across time. +

+

+ This project aims to create a database on objets d'art auction sales (from 1750s until 1950s) by working from a consistent source: the auction catalogue. +

+

+ From the mid-18th century auctions have been organised, mainly in Paris and London, to sell and disperse objects, + increasing greatly in the first half of the 19th century to reach a rhythm of several thousand sales per decade. + Individual auctions have always both combined and dispersed a great diversity of fine objects, from a multitude of origins. + The catalogue is a crucial record. In many cases annotated catalogues exist (with hammer prices and buyers) and others can be cross-referenced + with auctioneers' archives. The core of the dataset will be built up from the selection of a vast corpus of auction catalogues for the decorative arts. + These catalogues will be interrogated through digital methods (extraction, processing and machine learning) and Geovistory will be used to + integrate and structure various data collections. The database will offer a new tool for identification and provenance research but will also + focus on the individuals and institutions involved (sellers/buyers), allowing for a study of the networks and characteristics of this market over a long period. +

+

+ + From September 2023 to 2025 this project benefits from an ANR/Access ERC funding, + to explore the corpus, map the project planning and test the methods with the input of the LARHRA engineers. + +

+

The team

+

+ + + + + +

+ +

LARHRA Engineers

+

+ + + + + + + + +

+ +

Scientific Commitee

+

+ (being formed) +

+ + +

Institutional Partners

+

+ + + + + + + + + + + + + + +

+
+
+
+ ); +}; + +export default OBJECTive_component; diff --git a/lib/projectHomePages/projectHomePageMap.ts b/lib/projectHomePages/projectHomePageMap.ts index cf25194..91e2ce8 100644 --- a/lib/projectHomePages/projectHomePageMap.ts +++ b/lib/projectHomePages/projectHomePageMap.ts @@ -14,6 +14,7 @@ import StudentInternationalism_component from './student-internationalism/studen import UrbanBiographies_component from './urban-biographies/urban-biographies'; import EnfantsDuPlacard_component from './enfants-du-placard/enfants-du-placard'; import BaselNonProtestants_component from './basel-non-protestants/basel-non-protestants'; +import OBJECTive_component from './objective/objective'; interface Map { @@ -53,5 +54,7 @@ export const projectHomePageMap: Map = { 1458522: EnfantsDuPlacard_component, - 1719422: BaselNonProtestants_component + 1719422: BaselNonProtestants_component, + + 11200212: OBJECTive_component, }; diff --git a/lib/projectParams.ts b/lib/projectParams.ts index 10155f7..735c30a 100644 --- a/lib/projectParams.ts +++ b/lib/projectParams.ts @@ -598,6 +598,33 @@ LIMIT 10`, headOgImage: '/socialimage/basel-non-protestants.jpg' }, + // OBJECTive + { + geovID: 11200212, + geovName: 'OBJECTive', + + preferredClasses: [], + + featured: false, + listed: true, + + teiURL: '', + sparqlURL: '', + + fullName: 'OBJECTive', + shortName: 'OBJECTive', + description: 'Tracking Objets d\'art in Time through the Art Market', + + hasPage: true, + sparqlLinkEnabled: true, + searchLinkEnabled: true, + ontoExplorerLinkEnabled: true, + sparklisLinkEnabled: true, + teiLinkEnabled: false, + + headOgImage: '/socialimage/objective.png' + + }, ] diff --git a/public/logo_anr2.png b/public/logo_anr2.png new file mode 100644 index 0000000..520c8ba Binary files /dev/null and b/public/logo_anr2.png differ diff --git a/public/logo_lyon2.png b/public/logo_lyon2.png new file mode 100644 index 0000000..9848458 Binary files /dev/null and b/public/logo_lyon2.png differ diff --git a/public/objective.png b/public/objective.png new file mode 100644 index 0000000..e1921b9 Binary files /dev/null and b/public/objective.png differ