diff --git a/app/poem/content.tsx b/app/poem/content.tsx new file mode 100644 index 0000000..995d75d --- /dev/null +++ b/app/poem/content.tsx @@ -0,0 +1,105 @@ +"use client" +import React from 'react'; +import { TracingBeam } from "../components/ui/tracing-beam"; +import styled from 'styled-components'; +import { PageTitle } from '../components/page-title'; +import { EnterpriseCards } from '../components/enterprise-cards'; +import Newsletter from '../components/newsletter'; +import ContactMetal from '../components/contact-metal'; + +const Grid = styled.div` + display: grid; + max-width: 1150px; + grid-template-columns: repeat(3, 2fr); + column-gap: 15px; + row-gap: 15px; + ` + +export function Content() { + return ( + +
+ + A Brief Poem + +

'Twas the night before launch day, and all through the net,

+ The servers were ready, the staging was set.

+ The engineers snoozed, snug in their chairs,

+ In hopes that Horizon would handle the flares.

+



+ +

The code was deployed with meticulous care,

+ With dreams of smooth gameplay soon in the air.

+ The players were logging, the servers alive,

+ With socket.io humming, the data would jive.

+



+ +

When out on the network there arose such a clatter,

+ I sprang from my desk to see what was the matter.

+ Away to the dashboard I flew like a flash,

+ Checked the metrics, no sign of a crash.

+



+ +

The moon on the rise of the newly spun node,

+ Gave a luster of smoothness to the server load.

+ When what to my wondering eyes should appear,

+ But a scalable cluster and data so clear.

+



+ +

With a modular library, so easy to tweak,

+ I knew in a moment this must be the peak.

+ More rapid than fiber, the updates they came,

+ I whistled and shouted, and called them by name:

+



+ +

"Now Enterprise! Now SubSystems! Now customizable flair!

+ On Scalability! On Fault Tolerance! On performance so rare!

+ To the top of the charts! To the top of them all!

+ Now code away! Code away! Code away all!"

+



+ +

As packets that before the wild network fly,

+ When they meet with a router, they mount to the sky.

+ So up to the cloud the servers they flew,

+ With Horizon deployed and scalability too.

+



+ +

And then, in a twinkling, I heard on the wire,

+ The ping of a player, the speed never dire.

+ As I drew in my head, and was turning around,

+ Down came Horizon, stability renowned.

+



+ +

It was dressed all in Rust, from start to deploy,

+ And the bugs were all gone, leaving nothing to annoy.

+ A bundle of features it had in its pack,

+ And it looked like a powerhouse, ready to hack.

+



+ +

Its eyes, how they twinkled! Its performance, how merry!

+ Its stability, solid, its features so cherry!

+ Its quick deploy magic, all done with a flash,

+ Ensured that our servers would never quite crash.

+



+ +

It spoke not a word, but went straight to its work,

+ And filled all the instances; then turned with a smirk.

+ And laying its finger aside of its nose,

+ And giving a nod, up the network it rose.

+



+ +

It sprang to the cloud, to its team gave a whistle,

+ And away they all flew like the down of a missile.

+ But I heard it exclaim, ere it drove out of sight,

+ "Happy gaming to all, and to all a good night!"

+



+ + +
+
+
+
+ ); +} + +export default Content \ No newline at end of file diff --git a/app/poem/page.tsx b/app/poem/page.tsx new file mode 100644 index 0000000..9f17756 --- /dev/null +++ b/app/poem/page.tsx @@ -0,0 +1,9 @@ +import Content from './content'; + +export default function Home() { + return ( +
+ +
+ ); +} \ No newline at end of file