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/
*/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 parchment',
'Ancient symbols and glyphs',
'Collaborative team in discussion',
'Digital scroll with sacred texts',
'Abstract recursive patterns',
'Futuristic library with light',
'Mathematical equations on blackboard',
'Quantum field theory diagrams',
'Particle physics experiments',
'Complex physics simulations',
'Fractal geometry patterns',
'Scientific data visualization',
];
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, 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>
<WebSiteHeader projectName={'Anamnesis'} pages={pages} />
<main className={`flex-grow ${bgColor} rounded-none `}>
<HeroSection
projectName={'Anamnesis'}
image={['Mathematical symbols and sacred texts']}
image={['Quantum field theory diagrams']}
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 || ''}
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 type { ReactElement } from 'react';
import Head from 'next/head';