Creating individual asset pages for PC-internal components is not planned. Most data is scanned from WMI on the computers. With custom reports you are able to list it according to your needs. Warranty data of PC components won't currently be retrieved automatically.
You could use a report like the following example for HDD's. When running it, enter filter criteria in one ore more columns in order to look for specific information.
Select Top 1000 tblFloppy.floppyID,
tblAssets.AssetID,
tblAssets.AssetName,
tblFloppy.Name As [HDD name],
tblFloppy.Manufacturer,
tblFloppy.Model,
tblFloppy.SerialNumber,
tblFloppy.FirmwareRevision,
tblFloppy.InterfaceType,
tblFloppy.bytespersector,
tblFloppy.Partitions,
tblFloppy.Sectorspertrack,
tblFloppy.Size,
tblFloppy.Totalcylinders,
tblFloppy.Totalheads,
tblFloppy.Totalsectors,
tblFloppy.Totaltracks,
tblFloppy.TracksperCylinder,
tblFloppy.Lastchanged,
tblFloppy.Status
From tblAssets
Inner Join tblFloppy On tblAssets.AssetID = tblFloppy.AssetID
Order By tblAssets.AssetName,
[HDD name]