-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c29213
commit 77af3ba
Showing
4 changed files
with
128 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
export function InfinityBackground() { | ||
return ( | ||
<svg | ||
className="absolute inset-0 w-full h-full opacity-[0.07] pointer-events-none transition-[opacity] duration-200 group-hover:opacity-[0.15]" | ||
width="100%" | ||
height="100%" | ||
xmlns="http://www.w3.org/2000/svg" | ||
aria-hidden="true" | ||
viewBox="0 0 100 40" | ||
> | ||
<title>Decorative 00 Background</title> | ||
<defs> | ||
<linearGradient id="circleGradient" x1="0%" y1="0%" x2="100%" y2="100%"> | ||
<stop offset="0%" stopColor="rgb(139 92 246)" /> | ||
<stop offset="100%" stopColor="rgb(99 102 241)" /> | ||
</linearGradient> | ||
</defs> | ||
<g className="origin-[50%_20px] transition-transform duration-700 group-hover:rotate-[360deg]"> | ||
<circle | ||
cx="35" | ||
cy="20" | ||
r="8" | ||
fill="none" | ||
stroke="url(#circleGradient)" | ||
strokeWidth="3" | ||
className="transition-colors duration-200" | ||
/> | ||
<circle | ||
cx="65" | ||
cy="20" | ||
r="8" | ||
fill="none" | ||
stroke="url(#circleGradient)" | ||
strokeWidth="3" | ||
className="transition-colors duration-200" | ||
/> | ||
</g> | ||
</svg> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
interface NewsItem { | ||
id: number | ||
title: string | ||
description: string | ||
date: string | ||
category: 'AI' | 'Tech' | 'Prompt Engineering' | ||
readTime: string | ||
} | ||
|
||
export const newsItems: NewsItem[] = [ | ||
{ | ||
id: 1, | ||
title: 'OpenAI Introduces GPT-4 Turbo with Enhanced Context Window', | ||
description: | ||
'The latest model features a 128k context window and improved performance across various tasks, particularly in code generation and mathematical reasoning.', | ||
date: '2024-03-15', | ||
category: 'AI', | ||
readTime: '4 min read', | ||
}, | ||
{ | ||
id: 2, | ||
title: 'New Framework Revolutionizes Prompt Engineering Workflows', | ||
description: | ||
'Researchers develop a systematic approach to prompt engineering that increases success rates by 47% across various language models.', | ||
date: '2024-03-14', | ||
category: 'Prompt Engineering', | ||
readTime: '6 min read', | ||
}, | ||
{ | ||
id: 3, | ||
title: "Apple's Vision Pro Transforms Spatial Computing", | ||
description: | ||
'Early adopters report unprecedented experiences with spatial computing, as developers rush to create innovative applications for the platform.', | ||
date: '2024-03-13', | ||
category: 'Tech', | ||
readTime: '5 min read', | ||
}, | ||
{ | ||
id: 4, | ||
title: 'Chain-of-Thought Prompting Breakthrough', | ||
description: | ||
'New research shows that carefully structured chain-of-thought prompts can improve AI reasoning capabilities by up to 32% in complex tasks.', | ||
date: '2024-03-12', | ||
category: 'Prompt Engineering', | ||
readTime: '7 min read', | ||
}, | ||
{ | ||
id: 5, | ||
title: "Anthropic's Claude 3 Sets New Benchmarks", | ||
description: | ||
'The latest model demonstrates unprecedented capabilities in reasoning, coding, and mathematical problem-solving, challenging existing AI boundaries.', | ||
date: '2024-03-11', | ||
category: 'AI', | ||
readTime: '5 min read', | ||
}, | ||
{ | ||
id: 6, | ||
title: 'Quantum Computing Milestone Achieved', | ||
description: | ||
'Scientists successfully demonstrate error-free quantum operations at scale, bringing practical quantum computing one step closer to reality.', | ||
date: '2024-03-10', | ||
category: 'Tech', | ||
readTime: '8 min read', | ||
}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters