Compare commits

..

2 Commits

Author SHA1 Message Date
Flatlogic Bot
c9ac29f9bd Gh 2025-05-29 00:08:22 +00:00
Flatlogic Bot
1024bc3615 Gh 2025-05-29 00:08:21 +00:00
4 changed files with 29 additions and 13 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
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 parchment', 'Mathematical equations on blackboard',
'Ancient symbols and glyphs', 'Quantum field theory diagrams',
'Collaborative team in discussion', 'Particle physics experiments',
'Digital scroll with sacred texts', 'Complex physics simulations',
'Abstract recursive patterns', 'Fractal geometry patterns',
'Futuristic library with light', 'Scientific data visualization',
]; ];
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, sacred texts, and future-industry design. Dive into a digital scroll of discoveries, symbolic maps, and collaborative opportunities.`} 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.`}
/> />
</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={['Mathematical symbols and sacred texts']} image={['Quantum field theory diagrams']}
mainText={`Unveiling the Mysteries of ${projectName}`} mainText={`Unveiling the Mysteries of ${projectName}`}
subTitle={`Explore the intersection of mathematics, sacred texts, and future design. Dive into a digital scroll of discoveries and symbolic maps with ${projectName}.`} subTitle={`Explore the intersection of mathematics, physics, and future design. Dive into a digital field 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,3 +1,15 @@
<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';