Compare commits

..

No commits in common. "ai-dev" and "master" have entirely different histories.

4 changed files with 13 additions and 29 deletions

5
.gitignore vendored
View File

@ -1,8 +1,3 @@
node_modules/ node_modules/
*/node_modules/ */node_modules/
*/build/ */build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -87,12 +87,12 @@ export default function WebSite() {
const [images, setImages] = useState([]); const [images, setImages] = useState([]);
const pexelsQueriesWebSite = [ const pexelsQueriesWebSite = [
'Mathematical equations on blackboard', 'Mathematical equations on parchment',
'Quantum field theory diagrams', 'Ancient symbols and glyphs',
'Particle physics experiments', 'Collaborative team in discussion',
'Complex physics simulations', 'Digital scroll with sacred texts',
'Fractal geometry patterns', 'Abstract recursive patterns',
'Scientific data visualization', 'Futuristic library with light',
]; ];
useEffect(() => { useEffect(() => {
const fetchImages = async () => { const fetchImages = async () => {
@ -118,16 +118,16 @@ export default function WebSite() {
<title>{`Discover the Unified Solutions to Millennium Prize Problems`}</title> <title>{`Discover the Unified Solutions to Millennium Prize Problems`}</title>
<meta <meta
name='description' name='description'
content={`Explore the groundbreaking work of a polymath who bridges mathematics, physics, and future-industry design. Dive into a digital field of discoveries, symbolic maps, and collaborative opportunities.`} content={`Explore the groundbreaking work of a polymath who bridges mathematics, sacred texts, and future-industry design. Dive into a digital scroll of discoveries, symbolic maps, and collaborative opportunities.`}
/> />
</Head> </Head>
<WebSiteHeader projectName={'Anamnesis'} pages={pages} /> <WebSiteHeader projectName={'Anamnesis'} pages={pages} />
<main className={`flex-grow ${bgColor} rounded-none `}> <main className={`flex-grow ${bgColor} rounded-none `}>
<HeroSection <HeroSection
projectName={'Anamnesis'} projectName={'Anamnesis'}
image={['Quantum field theory diagrams']} image={['Mathematical symbols and sacred texts']}
mainText={`Unveiling the Mysteries of ${projectName}`} mainText={`Unveiling the Mysteries of ${projectName}`}
subTitle={`Explore the intersection of mathematics, physics, and future design. Dive into a digital field of discoveries and symbolic maps with ${projectName}.`} subTitle={`Explore the intersection of mathematics, sacred texts, and future design. Dive into a digital scroll of discoveries and symbolic maps with ${projectName}.`}
design={HeroDesigns.IMAGE_BG || ''} design={HeroDesigns.IMAGE_BG || ''}
buttonText={`Begin Your Journey`} buttonText={`Begin Your Journey`}
/> />

View File

@ -1,15 +1,3 @@
<meta
name='description'
content={`Explore the groundbreaking work of a polymath who bridges mathematics, physics, and future-industry design. Dive into a digital field of discoveries, symbolic maps, and collaborative opportunities.`}
/>
const pexelsQueriesWebSite = [
'Mathematical equations on blackboard',
'Quantum field theory diagrams',
'Particle physics experiments',
'Complex physics simulations',
'Fractal geometry patterns',
'Scientific data visualization',
];
import React, { useEffect, useState } from 'react'; import React, { useEffect, useState } from 'react';
import type { ReactElement } from 'react'; import type { ReactElement } from 'react';
import Head from 'next/head'; import Head from 'next/head';