Skip to content

Commit

Permalink
Update documentation landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Jan 11, 2025
1 parent aca3101 commit af3b95a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/_layouts/homepage.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ <h3 class="font-black text-6xl md:text-8xl tracking-tighter">Highlights</h3>

<div class="gap-6 flex flex-col my-16">

<h4 class="font-bold text-2xl">Simple API</h4>
<h4 class="font-bold text-2xl">Simple and straightforward API</h4>

<div class="bg-gradient-to-r from-csv-base to-white h-px"></div>

<h4 class="font-bold text-xl">Read and Write to CSV documents in <br />a memory efficient and scalable way</h4>
<h4 class="font-bold text-xl">Read from and Write to CSV documents<br />in a memory efficient and scalable way</h4>

<div class="bg-gradient-to-r from-csv-base to-white h-px"></div>

<h4 class="font-bold text-xl">Flexible and powerful query features and object-mapping.</h4>
<h4 class="font-bold text-xl">Flexible and powerful query features <br />and array to object-mapping.</h4>

<div class="bg-gradient-to-r from-csv-base to-white h-px"></div>

Expand Down
3 changes: 3 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ $csv->setHeaderOffset(0);

//build a statement
$stmt = Statement::create()
->select('firstname', 'lastname', 'email')
->andWhere('firstname', 'starts with', 'A')
->orderByAsc('email')
->offset(10)
->limit(25);

Expand Down

0 comments on commit af3b95a

Please sign in to comment.