✅ COMPLETED: 1. Dockerfile uses port 80 (astro preview) 2. BaseLayout imports globals.css 3. globals.css with Tailwind v4 @theme syntax 4. index.astro has Header, Footer, FixedContact 5. All image references fixed to existing files 6. Hero uses hdpe_pipe_main.jpg 7. Product cards use hdpe001.jpg 8. pt-20 on main for fixed header ✅ TESTED LOCALLY: - Build: 15 pages in 1.27s - Docker build successful - Port 80 working - Images load - CSS works Ready for Easypanel deployment.
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import type { AnyColumn } from "../../column.cjs";
|
|
import type { SQL, SQLWrapper } from "../sql.cjs";
|
|
/**
|
|
* Used in sorting, this specifies that the given
|
|
* column or expression should be sorted in ascending
|
|
* order. By the SQL standard, ascending order is the
|
|
* default, so it is not usually necessary to specify
|
|
* ascending sort order.
|
|
*
|
|
* ## Examples
|
|
*
|
|
* ```ts
|
|
* // Return cars, starting with the oldest models
|
|
* // and going in ascending order to the newest.
|
|
* db.select().from(cars)
|
|
* .orderBy(asc(cars.year));
|
|
* ```
|
|
*
|
|
* @see desc to sort in descending order
|
|
*/
|
|
export declare function asc(column: AnyColumn | SQLWrapper): SQL;
|
|
/**
|
|
* Used in sorting, this specifies that the given
|
|
* column or expression should be sorted in descending
|
|
* order.
|
|
*
|
|
* ## Examples
|
|
*
|
|
* ```ts
|
|
* // Select users, with the most recently created
|
|
* // records coming first.
|
|
* db.select().from(users)
|
|
* .orderBy(desc(users.createdAt));
|
|
* ```
|
|
*
|
|
* @see asc to sort in ascending order
|
|
*/
|
|
export declare function desc(column: AnyColumn | SQLWrapper): SQL;
|