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/
*/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 pexelsQueriesWebSite = [
'Mathematical equations on blackboard',
'Quantum field theory diagrams',
'Particle physics experiments',
'Complex physics simulations',
'Fractal geometry patterns',
'Scientific data visualization',
'Mathematical equations on parchment',
'Ancient symbols and glyphs',
'Collaborative team in discussion',
'Digital scroll with sacred texts',
'Abstract recursive patterns',
'Futuristic library with light',
];
useEffect(() => {
const fetchImages = async () => {
@ -118,16 +118,16 @@ export default function WebSite() {
<title>{`Discover the Unified Solutions to Millennium Prize Problems`}</title>
<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.`}
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>
<WebSiteHeader projectName={'Anamnesis'} pages={pages} />
<main className={`flex-grow ${bgColor} rounded-none `}>
<HeroSection
projectName={'Anamnesis'}
image={['Quantum field theory diagrams']}
image={['Mathematical symbols and sacred texts']}
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 || ''}
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 type { ReactElement } from 'react';
import Head from 'next/head';